Jump to content
  • 0
Sign in to follow this  
Svanhild

Where can I find the STR = ATK formula?

Question

5 answers to this question

Recommended Posts

  • 0

well my only problem is.. I need to change the ATK formula.. it's either change the per str = atk formula or make a global damage modifier to change ATK formula in mellee damage only excluding skills...

Share this post


Link to post
Share on other sites
  • 0
str = (int)(rstr + (float)dex/5 + (float)st->luk/3 + (float)((TBL_PC*)bl)->status.base_level/4);

this statement carries the formula adding atk for stats str/dex/luk

rstr =  actual str the user has meaning 1 str = 1bAtk

dex = dex/5 per bAtk

st->luk/3 = luk divided by 3 per bAtk

 

for example replacing rstr with (rstr *2) provides 2atk per str:

 str = (int)((rstr*2) + (float)dex/5 + (float)st->luk/3 + (float)((TBL_PC*)bl)->status.base_level/4);
Edited by ぽろり

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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