

Varyss
-
Posts
23 -
Joined
-
Last visited
-
Days Won
1
Community Answers
-
Varyss's post in where's the aspd calculation at? was marked as the answer
not the answer I was hoping to get.. but I guess it helped me. so thanks.
I'll just leave this here in case anyone asks the same thing in the future.
/// aspd = baseaspd + floor(sqrt((agi^2/2) + (dex^2/5))/4 + (potskillbonus*agi/200)) amotion -= (int)(sqrt( (pow(status->agi, 2) / 2) + (pow(status->dex, 2) / 5) ) / 4 + (status_calc_aspd(bl, sc, 1) * status->agi / 200)) * 10; it's unedited.