Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/26/16 in all areas

  1. You need to apply the OnPCSkillUseEvent.diff Check this links on how to apply a patch https://rathena.org/board/topic/102828-how-to-apply-diff-file/ https://rathena.org/board/topic/91246-patch-with-git/ But for me, prefer to do it manually. Doing it manually means you need to look for the changes made in the diff file and apply it to your files. Sample. Index: src/map/npc.c --> open src/map/npc.c =================================================================== --- src/map/npc.c (revision 100644) +++ src/map/npc.c (working copy) @@ -4350,5 +4350,6 @@ void npc_read_event_script(void) {"Die Event",script_config.die_event_name}, {"Kill PC Event",script_config.kill_pc_event_name}, {"Kill NPC Event",script_config.kill_mob_event_name}, --> Look for this part and add the new data + { "PC Use Skill Event", script_config.useskill_event_name }, --> This is the new added data on npc.c {"Stat Calc Event",script_config.stat_calc_event_name}, };
    1 point
  2. Depends on if he means the animation delay or the actual after cast delay. Like Lex Aeterna simply has a long aftercast delay that also applies to autocasts. It doesn't stop you from attacking, just from using a skill.
    1 point
  3. 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...