Jump to content

Diconfrost VaNz

Members
  • Posts

    996
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Diconfrost VaNz

  1. Right-click the opensetup.exe then look for "Run as admin"
  2. Hello rAthena !!! Join the Team at Ragnarok Underground! Are you passionate about gaming and eager to contribute to a thriving online community? Ragnarok Underground is looking for talented and motivated individuals to join our team and help us build an unforgettable gaming experience for players worldwide! Who Are We? Ragnarok Underground is a private server dedicated to delivering unique gameplay, innovative features, and a welcoming environment for gamers. As part of our staff team, you’ll be at the heart of crafting the future of this exciting community and engaging with players who share your passion for Ragnarok Online. Open Positions We are currently seeking enthusiastic individuals for the following roles: All-around Staff/Game Master(GM): An idividual that can handle stuffs like lead in-game events, support players, and maintain fair gameplay. Design and run exciting events to enhance player engagement. Foster a positive and inclusive environment across forums and social platforms. Provide technical assistance and resolve player concerns promptly. What We’re Looking For A love for Ragnarok Online and online gaming communities. Strong teamwork and communication skills. Dependability and a positive attitude. Role-specific expertise or experience (a bonus, but not mandatory). Why Join Ragnarok Underground? Be part of a creative and fast-growing gaming server. Gain experience in game development, community management, and event organization. Collaborate with a passionate and supportive team. Help shape the future of Ragnarok Underground and leave your mark on the community. How to Apply Think you’re a perfect fit? Fill out our Staff Application Form or reach out via Discord/Email/Forum. Share your skills, experiences, and your vision for Ragnarok Underground. Discord: diconfrost13 / rokunderground Let’s redefine the underground gaming scene together!
  3. did that player you attack not wearing any items or cards?
  4. Try this - script AcidDemoHandler -1,{ // Define WoE castle maps setarray .castle_maps$[0], "prtg_cas01", "prtg_cas02", "payg_cas01", "aldeg_cas01"; // Item IDs set .acid_demo_box, 9001; // Replace 9001 with your custom Acid Demonstration Box ID set .bottle_grenade, 7135; set .acid_bottle, 7136; // Acid Demonstration skill ID set .acid_demo_skill, 294; OnPCUseItemEvent: // Check if the used item is the Acid Demonstration Box if (getarg(0) == .acid_demo_box) { // Verify if the player is inside a WoE castle map if (getarraysize(.castle_maps$)) { for (set .@i, 0; .@i < getarraysize(.castle_maps$); set .@i, .@i + 1) { if (strcharinfo(3) == .castle_maps$[.@i]) { // Allow use in WoE castle skill .acid_demo_skill, 1; // Cast Acid Demonstration skill end; } } } // Outside castle maps: cancel item use and show a message dispbottom "The Acid Demonstration Box can only be used inside WoE castles."; end; } // Check for regular item usage (Bottle Grenade and Acid Bottle) if (getarg(0) == .bottle_grenade || getarg(0) == .acid_bottle) { // Allow item usage everywhere end; } end; } Save this script in your server's NPC scripts folder. Reload the script using the @reloadscript command. Test it inside and outside castle maps to ensure proper functionality.
  5. You should create a php file that will fetch data from your mvp ladder and display it in your FluxCP Example of it is the following: create a file named "top_mvp.php" <?php if (!defined('FLUX_ROOT')) exit; $title = "Top MVP Players"; // Fetching the top 3 players from the mvpladder table $sql = "SELECT `char_id`, `name`, `mvp_points` FROM `mvpladder` ORDER BY `mvp_points` DESC LIMIT 3"; try { $sth = $server->connection->getStatement($sql); $sth->execute(); $topPlayers = $sth->fetchAll(); } catch (PDOException $e) { Flux::message('Database Error: ' . $e->getMessage()); $topPlayers = []; } ?> Add the following code to the corresponding .tpl file or create a new template if necessary. For example, create a file top_mvp.tpl in your theme folder. <div class="content"> <h1><?php echo htmlspecialchars($title); ?></h1> <?php if (!empty($topPlayers)): ?> <table> <thead> <tr> <th>Rank</th> <th>Character Name</th> <th>MVP Points</th> </tr> </thead> <tbody> <?php foreach ($topPlayers as $rank => $player): ?> <tr> <td><?php echo $rank + 1; ?></td> <td><?php echo htmlspecialchars($player['name']); ?></td> <td><?php echo (int)$player['mvp_points']; ?></td> </tr> <?php endforeach; ?> </tbody> </table> <?php else: ?> <p>No data available at this time.</p> <?php endif; ?> </div> Save the PHP Script: Place the top_mvp.php file in your Flux Control Panel's pages directory. Create the Template File: Save the top_mvp.tpl file in the corresponding theme directory for your Flux CP. Access the Page: Navigate to yourfluxurl/index.php?module=top_mvp to view the top 3 MVP players.
  6. Well, this idea was derived from that too tho I was there when that was brought up. But that GRF Encryption Tool and a strong one? lemme do something about it. let me try.
  7. And for those who make servers then the clients, cancelled the project when you're half-way through.
  8. What kind of Designer you're looking for?
  9. You can ask Functor about it The default settings of Gepard doesn't allow multiple clients. You need to request to enable it.
  10. You should ask him his discord
  11. Status: IN PROGRESS This is a tool/application that will help rAthena emulator users to secure their own files. Server-side security. This will help the users to gain a method of encryption that uses a combination of a firm code and a product code to produce a unique key for each user. This key can then be used to grant specific privileges, such as time-limited access. Encryption is a key component of software licensing strategies that help to prevent piracy and protect the integrity of software. It can be used to: Protect licensing information Encrypting license keys and activation codes makes it harder for unauthorized users to create counterfeit licenses. Prevent reverse engineering Encryption can protect the integrity of software executables and make it harder for people to try to circumvent copy protection. File encryption is a way to protect the contents of a file by making it so that only an authorized person with the correct encryption key can access it. File encryption is useful for businesses that need to protect data, work in regulated industries, or deal with personally identifiable information (PII). Application Overview This application will automates file encryption, decryption, and access control for rAthena. It will handle: Initial Setup: Configure which files and folders to encrypt, generate license keys, and set up the secondary access key. Encryption & Decryption Management: Handle the encryption and decryption of specified files. Access Control: Prompt for secondary access key when accessing encrypted files. License Management: Generate, validate, and manage license keys, including revocation, expiration, and periodic revalidation. Security Check: Monitor for tampering and respond by corrupting or locking the rAthena server if unauthorized changes are detected. We will release a demo version for everyone to try.
  12. May mga references kanaba? Files and etc? yan kasi ang mga basic necessity na need mo eh
  13. is still working in our latest git?
×
×
  • Create New...