Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/05/25 in all areas

  1. Hi everyone, it's been a long time since I visited the this forum, I had thought about making a simpler control panel, I hope there are those here who want to contribute to the control panel that I made, if anyone is interested, please send a message directly. Here is the display, suggestions and input from all of you are very important for the development of this control panel.
    1 point
  2. translate1.mp4 data.zip note! just a translation only
    1 point
  3. View File Shops Selling All Costumes Available in Rathena This script has NPC shops that sell all available costume items in rAthena as of March 2025. Costumes are categorized based on their equipment slot (Upper, Middle, Lower and Garment) and distributed across multiple shops (150 item per shop), Ensuring a well-organized and accessible shopping experience. The item list is filtered to include only valid costumes from latest iteminfo_EN.lua (English Translation), preventing missing or invalid entries. if you remove the commented shops it will sell all costumes available in the database (item_equip_db.yml). Ideal for servers looking to provide a complete costume collection for players! Submitter Shiroy Submitted 03/18/25 Category Utilities Video Content Author Shiroy  
    1 point
  4. You should stop your shits man. You clearly revealed personal info across internet, which is a crime. Also violating rathena GPL, and, some other shits that were posted in the other post... Do still you think the people care about your shits, or that you're that important that anyone will waste his time to "hack" you? Poor ignorant..
    1 point
  5. Welcome Rhymaestro, if you want to modify Ragnarok to fit to your ideas, you have several options and things to learn. The simplest way to change the world itself is using scripting, it lets you do a lot of stuff, but based on how deep you want your changes to be, you will reach its limits relatively fast. This brings us to source modification, for which you will need C++, it will allow you far more agency but is also more complicated and harder to learn. Custom jobs for example would be a thing that you would implement via source modification. You will also need to grasp at least a bit of how the client works, where it gets the graphics and information from, so you can extend or modify things to your liking. Taking your custom job idea, you would need to change client files for the skill descriptions, for example. Many things you want to achieve will have been done in one way or another already. So searching the forum or checking the download section for scripts or source mods you can use as a base or learn from might be useful. You can also check the rAthena wiki at https://github.com/rathena/rathena/wiki which has a lot of guides on how to install rAthena and connect to it or how to achieve certain things you may want to do like adding custom items or mobs. Another helpful resource is the doc directory in the rAthena folder. You can find an online copy here: https://github.com/rathena/rathena/tree/master/doc it provides a lot of information regarding the structure of rAthena to make it clearer how it works. I think especially helpful are the script_commands.txt, which is a reference of all scripting commands rAthena provides and the source_doc.txt which explains how the servers communicate with each other, how the code is organized and what a lot of the acronyms often seen in the source code mean. Tool and resource wise, I can recommend you the tools from: Ai4Rei: https://nn.ai4rei.net/ (Check yourself which tools you might need) Tokei: https://rathena.org/board/files/file/2766-grf-editor/ (GRF Editor) llchrisll: https://github.com/llchrisll/ROenglishRE (English translation of the client) 4144: https://nemo.herc.ws/downloads/ (A good source for full clients, unpacked client exes, and you can get nemo patcher from there to patch your client) Feel free to ask any questions you have. I wish you the best and look forward to seeing how your project progresses.
    1 point
  6. I was trying to add this feature to PRE-RE, but I was struggling to make it work. Then, I stumbled upon someone who shared this link: https://github.com/rathena/rathena/commit/8dea04a8b3895398a5c62e06dc8cf920cebd43df After checking it out, I got a hint about what changes I needed to make. If you want to add this feature to PRE-RE, follow these steps: In conf/battle/feature.conf // Private Airship System (Note 1) // Requires: 2018-03-21aRagexeRE or later feature.privateairship: on npc/re/mapflag/privateairship.txt (move this npc file into pre-re folder or custom. or just enabled it into pre-re) To add this feature, you need to add the following code to the item_group_db.yml file located in the import folder inside the db directory (db/import/item_group_db.yml): - Group: PRIVATE_AIRSHIP SubGroups: - SubGroup: 1 List: - Item: Blue_Herb Rate: 1 - Item: Biotite Rate: 1 Make sure to change the items to the ones you want to use. In my case, I used blue herb and biotite.
    1 point
×
×
  • Create New...