minicasio Posted August 11, 2016 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 12 Reputation: 0 Joined: 07/27/12 Last Seen: October 17, 2017 Share Posted August 11, 2016 i want to change aspd formula from kro to iro. help please. Quote Link to comment Share on other sites More sharing options...
0 wOni Posted August 12, 2016 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 69 Reputation: 2 Joined: 04/20/13 Last Seen: October 6, 2018 Share Posted August 12, 2016 you can change it manually here Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted August 12, 2016 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 894 Reputation: 248 Joined: 01/30/13 Last Seen: 13 hours ago Share Posted August 12, 2016 You can edit the calculation in status.c "status_calc_bl_main" and the ASPD function called from there. Quote Link to comment Share on other sites More sharing options...
0 minicasio Posted August 13, 2016 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 12 Reputation: 0 Joined: 07/27/12 Last Seen: October 17, 2017 Author Share Posted August 13, 2016 change is here? #ifndef RENEWAL_ASPD status->aspd_rate = status_calc_aspd_rate(bl, sc, b_status->aspd_rate); if(status->aspd_rate != 1000) amotion = amotion*status->aspd_rate/1000; #else /// 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; if( (status_calc_aspd(bl, sc, 2) + status->aspd_rate2) != 0 ) // RE ASPD percertage modifier amotion -= ( amotion - pc_maxaspd(sd) ) * (status_calc_aspd(bl, sc, 2) + status->aspd_rate2) / 100; if(status->aspd_rate != 1000) // Absolute percentage modifier amotion = ( 200 - (200-amotion/10) * status->aspd_rate / 1000 ) * 10; #endif Quote Link to comment Share on other sites More sharing options...
Question
minicasio
i want to change aspd formula from kro to iro.
help please.
Link to comment
Share on other sites
3 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.