Jump to content
  • 0

Dragons BREATH


Question

Posted

Can Someone Help me How To Reduce Dragons Breath
i need to know how with explanation please.....
 

    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;
        break;

Need Help I want To Reduce it 25% :(

2 answers to this question

Recommended Posts

Posted

So it will look like this??

 

    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;

md.damage = (md.damage / 4) * 3;

 

before break;

And BTW i dont have Skill_damage_DB inside my db folder
i already check it on my re and pre_re folder i dont see db like that

thx for ur reply gonna test it.

 

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...