Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/29/24 in Posts

  1. Froggo Rö Folder This is a simple RO folder that contains everything you need to run a 2022-04-06 client, the latest publicly available. I have cleaned and compressed the data.grf file to reduce its size from 3.87GB to 2.14GB. official_data.grf took the same treatment and the file size went down to 426MB. Additionally, I have added a mini-map to all those maps that were lacking one, approximately 275 mini-maps were added, I only ignored some indoor (_in) and guild castles maps. Before BGM, the Rö folder has a total size of 2.62GB, after BGM it reaches 2.96GB Screenshots Requirements Server Up & Running with ‎‏‏‎ PACKETVER=20220406 Visual C++ Redistributables DirectX Runtime Features Includes latest RoEnglishRE - 16/mar/2024 Custom Lua Support jRO Enchantment Display Includes rsu-kro-rag-lite (kRO updater) - v4.2.2.1316 Includes opensetup - v3.1.0.627 Includes iRO's Setup.exe, thanks to relzz! Includes AzzyAI 1.55 Includes Packet Viewer Download click here to download a .zip file of this ro-folder ~fast mirror (●'◡'●)~ Extra Warp Profile for 2022-04-06 used for FroggoClient.exe (mirror) 2022-04-06 Vanilla Ragexe Client Login Screen Creator Official Ragnarok Complete Zipped Folder(10/June/2024) Official Ragnarok Complete EXE Installer (08/Jan/2024)(mirror) Froggö Ro Folder Gitlab's Repo FAQ Why am I getting CHARACTER_INFO size error when trying to log in? Possible reasons: You are using outdated rAthena which doesn't work with 2022-04-06 client. You haven't set correct PACKETVER or done it with mistakes (skill issue ). You haven't recompiled rAthena. You haven't restarted server after recompilation. Why am I getting errors about MSVCP140.dll, VCRUNTIME140.dll when executing FroggoClient.exe? You haven't installed Visual C++ Redist, check requirements section, if problem persists, try installing this too Visual C++ Redist for VS 2012u4 What is official_data.grf ? official_data.grf is from the ROResourceCollection project, which brings many items, mobs and npc files from other RO Regions and merges it into one convenient grf. Why does the Setup.exe opens instead of the FroggoClient.exe? In your Windows registry there is no data about your selected graphic card, to fix it, just set up your settings in Setup.exe and click on OK, be aware to don't select DirectX9, stay on DirectX7 What was removed from the data.grf? Several unnecessary files were removed from the data.grf . These included residual files such as thumbs.db and stray BMP Screenshots. However, the majority of the cleanup was performed in the mob and npc sprite folders. In these folders, some .spr files contained sprites (images) that were not utilized in their corresponding .act files. For example, the monster katrinn's .spr file contained approximately 140 images, but only 6 of them were actually used. In total, out of nearly 90,000 collective images, around 9,400 were removed alv.
    1 point
  2. You can use the one in this link.
    1 point
  3. Hi @GM Winter, I have created script. This is just a basic script which I think would answer your request. So basically, this script requires an item to enter but it doesn't get or delete the item from your user's inventory. What you have to do is create an usable item which item script is will give the user a rental etc item meaning the ticket will have a duration on their inventory. I hope it makes sense. prontera,150,150,5 script Guild Room 123,{ mes "[Guild Room]"; mes "Hey, there. Do you want to enter Guild"; next; switch(select("Yes:No")) { case 1: if (countitem(1234) > 0) { mes "[Guild Room]"; mes "Oh, awesome, I see you have a ticket to enter the Guild Room."; mes "Ready? Let's do this."; next; warp "payon",123,123; close; } else { mes "[Guild Room]"; mes "Dude, you do not have the ticket to enter the Guild Room."; mes " "; mes "Sorry but you cannot enter."; close; } case 2: mes "[Guild Room]"; mes "Well, come back if you change your mind."; close; } } Change the 1234 to your etc item ID.
    1 point
  4. Hi @luizinhomt I have created a simple NPC script for you. Just tweak it to your liking. prontera,157,183,5 script Police Officer 100,{ // Random number generation .@num1 = rand(1, 10); // First number between 1 and 10 .@num2 = rand(1, 10); // Second number between 1 and 10 .@correctAnswer = .@num1 * .@num2; // Calculate correct answer // Show the multiplication problem with player name mes "Hello " + strcharinfo(0) + "! Solve this for me so that you can go out of the jail:"; mes .@num1 + " * " + .@num2 + " = ?"; // Player input for the answer next; input .@playerAnswer, 3; // Limit input to 3 digits // Check the answer if (.@playerAnswer == .@correctAnswer) { mes "Correct! You may now proceed to Prontera."; warp "prontera", 150, 150; // Warp to Prontera close; } else { mes "That's not correct. You must stay here with me in jail."; } close; }
    1 point
  5. pre-re doesnt have major update, maybe some fixes so no problem to use rathena even the latest one.
    1 point
  6. Many developers are currently creating paid tools that can bypass Gepard, especially features like no delay and animation removal. The cheapest tools, like Xmafia, are even being developed for AndroidRO. You might want to try using Adelays; there's a project ongoing that’s updated with the latest Rathena. While this isn't a permanent solution, it can help significantly.
    1 point
  7. .@aid = getcharid(0); for(.@i = getarraysize(.char_id) - 1; .@i >= 0; .@i--) { if (.char_id[.@i] == .@aid) deletearray .char_id[.@i],1; } you could do it this way as well, loop from the end to the start... this way you wont need to worry to recalculate the index in case you're intend to continue removing all the duplicates data in the array.
    1 point
×
×
  • Create New...