Jump to content
  • 0
Sign in to follow this  
Bringer

Reduce Damage Final Strike

Question

11 answers to this question

Recommended Posts

  • 0

change formula @battle.c

wd.damage = 40*sstatus->str +skill_lv*(sstatus->hp/10 + 35);

:meow:

server rate is 999 almost 1.2m each final strike

 

stats 500

 

if ninja use thana card final strike reach almost 3.7m dmg

Edited by Bringer

Share this post


Link to post
Share on other sites
  • 0

Bump for what? You've been given what formula to change, so adjust it to your liking.

The formula given nothing change at all what part i need change in the formula to reduce the dmg

Share this post


Link to post
Share on other sites
  • 0

Depends on ow badly you want to nerf the damage, that's why you're on your own there. Currently formula is DMG = 40*STR + SKILL_LV * (HP/10 + 35).

Best results would come from reducing multipliers, like make it 10*STR + SKILL_LV/5 * (HP/100 + 35). That way you'll reduce damage quite some bit. But as I said, which parts exactly you want nerfed is up to you >.>

Share this post


Link to post
Share on other sites
  • 0

Depends on ow badly you want to nerf the damage, that's why you're on your own there. Currently formula is DMG = 40*STR + SKILL_LV * (HP/10 + 35).

Best results would come from reducing multipliers, like make it 10*STR + SKILL_LV/5 * (HP/100 + 35). That way you'll reduce damage quite some bit. But as I said, which parts exactly you want nerfed is up to you >.>

wd.damage = 10*sstatus->str +skill_lv5*(sstatus->hp/10 + 35);

 

like that?

Share this post


Link to post
Share on other sites
  • 0

 

Missed division. skill_lv / 5, not skill_lv5.

wd.damage = 10*sstatus->str +skill_lv / 5*(sstatus->hp/10 + 35); this?

Share this post


Link to post
Share on other sites

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

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.