Varyss Posted November 16, 2015 Posted November 16, 2015 topic. wanted to increase the amount of whatever stats needed to increase aspd (slower attack). Quote
0 clydelion Posted November 17, 2015 Posted November 17, 2015 search in status.c, something like status_calc_aspd 1 Quote
0 Varyss Posted November 18, 2015 Author Posted November 18, 2015 search in status.c, something like status_calc_aspd 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. Quote
Question
Varyss
topic. wanted to increase the amount of whatever stats needed to increase aspd (slower attack).
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.