Jump to content

Lilori

Members
  • Posts

    10
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Lilori

  1. View File Simple PreRegister Landing Page Hello! This is my first file. I created a simple and light Pre-Register Landing Page. Usually made for a pre-launch server that has Pre-Register Event/Account Register Tracker Milestone. Configuration connection.php (link to your Database) Replace: root with your username database blank with your password database ragnarok with your Server database <?php $conn = new mysqli("localhost", "root", "", "ragnarok"); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } ?> index.php (Milestone reward information) Replace: Jellopy with your Reward (Total 100 account registered) Fluff with your Reward (Total 300 account registered) Manta with your Reward (Total 500 account registered) Sword with your Reward (Total 1000 account registered) You can also edit the amount. // EDIT ITEM REWARD HERE if ($total_accounts >= 1000) { $current_reward = "Sword"; } elseif ($total_accounts >= 500) { $current_reward = "Manta"; } elseif ($total_accounts >= 300) { $current_reward = "Fluff"; } elseif ($total_accounts >= 100) { $current_reward = "Jellopy"; } elseif ($total_accounts >= 0) { $current_reward = "None"; } Other Edit: If you want the Form center, open: Open: .../css/style.css Find: .container { position: absolute; left: 150px; background: linear-gradient(135deg, #ffffff, #f8f9fa); padding: 20px; border-radius: 12px; box-shadow: 7px 12px 20px rgba(0, 0, 0, 0.15); width: 100%; height: 500px; max-width: 550px; overflow-y: auto; transition: transform 0.3s ease, box-shadow 0.3s ease; } Replace: .container { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); width: 100%; height: 500px; max-width: 400px; overflow-y: auto; } Thankyou. Submitter Lilori Submitted 11/06/24 Category General Website Templates Video Content Author Lilori  
  2. Version 1.0.0

    1 download

    Hello! This is my first file. I created a simple and light Pre-Register Landing Page. Usually made for a pre-launch server that has Pre-Register Event/Account Register Tracker Milestone. Configuration connection.php (link to your Database) Replace: root with your username database blank with your password database ragnarok with your Server database <?php $conn = new mysqli("localhost", "root", "", "ragnarok"); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } ?> index.php (Milestone reward information) Replace: Jellopy with your Reward (Total 100 account registered) Fluff with your Reward (Total 300 account registered) Manta with your Reward (Total 500 account registered) Sword with your Reward (Total 1000 account registered) You can also edit the amount. // EDIT ITEM REWARD HERE if ($total_accounts >= 1000) { $current_reward = "Sword"; } elseif ($total_accounts >= 500) { $current_reward = "Manta"; } elseif ($total_accounts >= 300) { $current_reward = "Fluff"; } elseif ($total_accounts >= 100) { $current_reward = "Jellopy"; } elseif ($total_accounts >= 0) { $current_reward = "None"; } Other Edit: If you want the Form center, open: Open: .../css/style.css Find: .container { position: absolute; left: 150px; background: linear-gradient(135deg, #ffffff, #f8f9fa); padding: 20px; border-radius: 12px; box-shadow: 7px 12px 20px rgba(0, 0, 0, 0.15); width: 100%; height: 500px; max-width: 550px; overflow-y: auto; transition: transform 0.3s ease, box-shadow 0.3s ease; } Replace: .container { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); width: 100%; height: 500px; max-width: 400px; overflow-y: auto; } Thankyou.
    5.00 USD
  3. better give attention to status.cpp
  4. Elurair just all fine, but every Elurair is closed (and auto-close after clicking start button), why this message always pop up and how to disable it?
  5. omg that's works like a charm! thank you!
  6. Hi rA community! I want to ask how to set an input NPC that can't duplicate same values (number only) and write it on sql? For example player A already input number 10, then when player B tries to input number 10, NPC can't proceed it. Thank you!
  7. i am currently developing this kind of server, maybe you can peek my profile what server i dev. so far, for 2nd job is going fine and balance. in my server you will found "overpowered" rebirth class damage. many modification was changed by me. for this conclusions, you can't use clean rAthena for this. even you have configure which renewal and pre-renewal system turns on.
×
×
  • Create New...