Yonko Posted July 27, 2012 Posted July 27, 2012 can someone make a src regards the npc_earthquake skill ? it can damage depends on intelligence give delays thanks! Quote
Mystery Posted July 27, 2012 Posted July 27, 2012 You could use this: https://rathena.svn....rc/map/battle.c case NPC_EARTHQUAKE: skillratio += 100 + 100 * skill_lv+100*(skill_lv/2) + sstatus->int; break; So that it's based on your INT. Or this for less (potential high damage): case NPC_EARTHQUAKE: skillratio += 100 + 100 * skill_lv + sstatus->int; break; Quote
Question
Yonko
can someone make a src regards the npc_earthquake skill ? it can damage depends on intelligence give delays thanks!
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.