Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/14/21 in all areas

  1. Bonus Expansion Pack Introduction As some of you may know, a long time ago I made a patch for eAthena which included an expanded collection of bonus script commands which could be used on items. I'm guessing this was somewhere in the region of 10 years ago now, so I think it's probably fitting that a newer version be developed. So, development hasn't started yet as I need to dig up the old list and identify which ones haven't already been implemented/which ones can actually be implemented against the new code base. Requests This topic will serve as the base for any and all requests. The purpose of this project is to develop new bonus script commands, or augment existing ones by adding more specific or extra versions. I'm open to the community for any suggestions and requests for the bonuses which will be introduced. Please don't request things like new at-commands or new script commands as I'd like to keep this project specific to bonuses, however I might end up developing some script commands if I find that they're necessary to accomplish a bonus. Pending Implemented Usage The development will take place on a fork of rAthena under a separate branch. Once the initial version is complete I will generate a patch file which can be applied against the master branch of an rAthena repository. Please be advised that I won't be providing support for previous revisions (for example, if you're running a version of rAthena which was available 4 months prior to my patch.) My intention is to keep the forked branch up-to-date with periodic merges of the master branch, and produce new patch files whenever this takes place (and keep historical patches) Thanks
    1 point
  2. 1 point
  3. For older reps you need modify import/item_trade.txt YOUR ITEM ID,9,100 // Your custom item 9 is the value allows players can't trade or sold item to an npc, and 100 is the group level overrides this rule.
    1 point
  4. - script atcmd_example -1,{ OnInit: bindatcmd "test",strnpcinfo(3) + "::OnAtcommand"; end; OnAtcommand: if(strcharinfo(3) == "mapevent" { do comand here } end; } try this
    1 point
  5. I wonder if you're using Renewal Drop system and those 2 characters not at same Level It will affect drop rates Try to check again with same Level characters
    1 point
  6. Hi rAthena, How to change the VIP Message ? it's a bit confused to read .... VIP Message on my Server : i want to change like this one, it's really simple: please tell me step by step to edit this one thanks in advance
    1 point
  7. src/map/status.h /** * Max Refine available to your server * Changing this limit requires edits to refine_db.txt **/ #ifdef RENEWAL # define MAX_REFINE 20 #else # define MAX_REFINE 10 #endif enum refine_type { REFINE_TYPE_ARMOR = 0, REFINE_TYPE_WEAPON1 = 1, REFINE_TYPE_WEAPON2 = 2, REFINE_TYPE_WEAPON3 = 3, REFINE_TYPE_WEAPON4 = 4, REFINE_TYPE_MAX = 5 };
    1 point
×
×
  • Create New...