Jump to content
  • 0

Reduce Sonic Blow damage.


Question

6 answers to this question

Recommended Posts

  • 0
Posted

to be correct in this code, you don't need to half the

On 1/10/2013 at 11:04 PM, Peopleperson49 said:

case AS_SONICBLOW: skillratio += -50+5*skill_lv;

to

On 1/10/2013 at 11:04 PM, Peopleperson49 said:

case AS_SONICBLOW: skillratio += -25+(5*skill_lv)/2;

Instead make it 

Quote

 

case AS_SONICBLOW:

skillratio += -75+(5*skill_lv)/2;

 

because you we're reducing the damage not making the damage increase.

Posted (edited)

I am by no means an expert at src mods, but I know it is controlled through the battle.c. Since it is based on doing 8 hits the damage is calculated using the following:

case AS_SONICBLOW:
 skillratio += -50+5*skill_lv;

If you replace it with what I have below I believe it will reduce the damage by half. Add it and compile. If it don't work just restore the old version.

case AS_SONICBLOW:
 skillratio += -25+(5*skill_lv)/2;

Peopleperson49

Edit: This will also do the same thing. http://rathena.org/b...kill-damage-20/

Edited by Peopleperson49

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...