yazankayed Posted June 12, 2013 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 23 Reputation: 0 Joined: 12/19/11 Last Seen: September 11, 2016 Share 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 Link to comment Share on other sites More sharing options...
Jaburak Posted June 12, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 1125 Reputation: 236 Joined: 07/30/12 Last Seen: April 13 Share 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 Link to comment Share on other sites More sharing options...
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
Link to comment
Share on other sites
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.