Where can I find the STR = ATK formula?

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

 
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:

Code:
 str = (int)((rstr*2) + (float)dex/5 + (float)st->luk/3 + (float)((TBL_PC*)bl)->status.base_level/4);
 
Last edited by a moderator:
Back
Top