Trevned Posted May 7, 2012 Posted May 7, 2012 Can anyone send me a link of Full Guide or Info to change the damage percent of 3rd Job Skills like Dragon Breath and Cross Impact? Thanks! in advance Quote
quesoph Posted May 7, 2012 Posted May 7, 2012 search for this in: ../src/map/battle.c Change their values: here is an example case RK_DRAGONBREATH: md.damage = ((status_get_hp(src) / 200) + (status_get_max_sp(src) / 40)) * skill_lv; if (status_get_lv(src) > 100) md.damage = md.damage * status_get_lv(src) / 150; if (sd) md.damage = md.damage * (100 + 5 * (pc_checkskill(sd,RK_DRAGONTRAINING) - 1)) / 100; break; case GC_CROSSIMPACT: skillratio += 550 + 50 * skill_lv; break; Try this and recompile. Quote
Trevned Posted May 7, 2012 Author Posted May 7, 2012 Any info on what to change there? Thanks! appreciate your reply Quote
Question
Trevned
Can anyone send me a link of Full Guide or Info to change the damage percent of 3rd Job Skills like Dragon Breath and Cross Impact?
Thanks! in advance
2 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.