Jump to content

Diconfrost VaNz

Members
  • Posts

    996
  • Joined

  • Last visited

  • Days Won

    1

Diconfrost VaNz last won the day on November 16 2024

Diconfrost VaNz had the most liked content!

About Diconfrost VaNz

  • Birthday 01/15/1991

Profile Information

Contact Methods

  • Skype
    diconfrostvanz

Recent Profile Visitors

17236 profile views

Diconfrost VaNz's Achievements

  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.
×
×
  • Create New...