yazankayed Posted June 12, 2013 Posted June 12, 2013 Hello: I want to reduce Dragon Breath Damage because it's overbowering!!! That happened when i change the max level to 250. I want to make balance (Reduce the damage 50% please) I know that i can do it from battle.c, but i don't know how to change the values to make the damage 50%. Thanks Quote
Jaburak Posted June 12, 2013 Posted June 12, 2013 trunk/src/map/battle.c Find: case RK_DRAGONBREATH: md.damage = ((status_get_hp(src) / 50) + (status_get_max_sp(src) / 4)) * skill_lv; RE_LVL_MDMOD(150); if (sd) md.damage = (int64)md.damage * (100 + 5 * (pc_checkskill(sd,RK_DRAGONTRAINING) - 1)) / 100; md.flag |= BF_LONG|BF_WEAPON; Replace: case RK_DRAGONBREATH: md.damage = ((status_get_hp(src) / 50) + (status_get_max_sp(src) / 4)) * skill_lv; RE_LVL_MDMOD(150); if (sd) md.damage = (int64)md.damage * (50 + 5 * (pc_checkskill(sd,RK_DRAGONTRAINING) - 1)) / 100; md.flag |= BF_LONG|BF_WEAPON; Quote
Question
yazankayed
Hello:
I want to reduce Dragon Breath Damage because it's overbowering!!!
That happened when i change the max level to 250.
I want to make balance (Reduce the damage 50% please)
I know that i can do it from battle.c, but i don't know how to change the values to make the damage 50%.
Thanks
1 answer 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.