Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/19/16 in all areas

  1. As the title says. How to remove all npc in turbo room? including the boards, normal mode, solo mode etc. FIXED. trunk/npc/scripts_athena.conf find npc: npc/other/turbo_track.txt and make it //npc: npc/other/turbo_track.txt
    1 point
  2. Well first of all that rate 300 is pretty high. That's 300% more EXP each kill. That is quadruple EXP the first kill! Very abusable. I'd rather put something like 10-30. Second, monsters level up to "max base level" of the PC they killed, so it depends what the max level is on your server. You can change it by putting concrete number in pc.c: if(battle_config.mobs_level_up && md->status.hp && (unsigned int)md->level < pc_maxbaselv(sd) && !md->guardian_data && !md->special_state.ai// Guardians/summons should not level. [Skotlex] ) { // monster level up [Valaris] clif_misceffect(&md->bl,0); md->level++; status_calc_mob(md, SCO_NONE); status_percent_heal(src,10,0); if( battle_config.show_mob_info&4 ) {// update name with new level clif_charnameack(0, &md->bl); } } Just replace "pc_maxbaselv(sd)" with whatever max level you want.
    1 point
  3. @rakuzas use @reloadscript and restart server and try again another --> go to your ragnarok db >char> find out there character names and delete.
    1 point
  4. Random Option System As of f296409, rAthena now supports Random Option System! Random Option System is a feature that is implemented in 2015-05-13 clients and later. It allows equipments to have up to 5 additional effects. You may think of it as 5 additional customizable card slots! With this feature, we believe it will open many more possibilities for server owner and scripters to create contents. However, this feature is still in initial release state. Bugs and issues may occur. We hope you could kindly report them to us. Finally, in addition to the feature, we will release more script command support for this feature in the future. Stay tuned! Details : - This features requires 2015-05-13 client or later to display the bonus in the client. - New database file has been added for renewal mode (db/re/item_randomopt_db.txt) - You can add additional bonus in db/import/item_randomopt_db.txt as usual. - New script commands. You can read more in doc/script_commands.txt * getrandomoptinfo - For reading attributes of the option calling this command itself. * getequiprandomoption - For reading attributes of an option on an equipped item. * setrandomoption - For applying an option to an equipped item. Special thanks to Napster for the initial code base of this feature.
    1 point
×
×
  • Create New...