Jump to content

Leaderboard


Popular Content

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

  1. 1 point
    Requires source edit. Go to src/map/skill.c, find static int can_copy(). Anywhere after nullpo_ret(sd); you can put your conditions. if (skill_id == WZ_WATERBALL) return 0; If you want to carryover skill_lv, you need to edit 2 lines. Change 1, find line: can_copy(tsd,copy_skill,bl)) // Split all the check into their own function [Aru] Change to: can_copy(tsd, copy_skill, skill_lv, bl)) // Split all the check into their own function [Aru] Change 2, find line: static int can_copy(struct map_session_data *sd, uint16 skill_id, struct block_list *bl) Change to: static int can_copy(struct map_session_data *sd, uint16 skill_id, uint16 skill_lv, struct block_list *bl)
  2. 1 point
    Dastgir

    Send RODex Mail to ALL ONLINE

    Check script commands: rodex_sendmail_acc and getunits Basically, Iterate over all getunits(BL_PC, ...) and save the account ID's in an array and then use those accountID to do any operation you like, like sending rodex mail (rodex_sendmail_acc command), or you can even use charID to send rodex mail(rodex_sendmail). It's not required to save Array, and instead you can directly loop over getunits and use rodex_sendmail command inside the loop.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.