Radian Posted October 1, 2018 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Share Posted October 1, 2018 (edited) While I was searching the answer for my problem. I cannot find any exact answers. My issue is I want to remove dex on adding aspd and make 10 AGI = 1 aspd. Thanks in advance Edited October 1, 2018 by Radian Quote Link to comment Share on other sites More sharing options...
0 MathReaper Posted October 13, 2018 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 57 Reputation: 14 Joined: 09/01/18 Last Seen: May 26, 2023 Share Posted October 13, 2018 Ok, in the 'status_base_amotion_pc' function on status.cpp file, search for: amotion -= amotion * (4 * status->agi + status->dex) / 1000; Change to: amotion -= amotion * 2 * status->agi / 1000; 1 1 Quote Link to comment Share on other sites More sharing options...
0 MathReaper Posted October 13, 2018 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 57 Reputation: 14 Joined: 09/01/18 Last Seen: May 26, 2023 Share Posted October 13, 2018 If you are on RENEWAL go to file status.cpp and search for the function 'status_base_amotion_pc' (line 2366 actual git commit) and find the two lines: temp_aspd = status->dex * status->dex / 7.0f + status->agi * status->agi * 0.5f; and temp_aspd = status->dex * status->dex / 5.0f + status->agi * status->agi * 0.5f; change to: temp_aspd = status->agi * 0.1f; Now search for: temp_aspd = (float)(sqrt(temp_aspd) * 0.25f) + 0xc4; change to: temp_aspd += 0xc4; Quote Link to comment Share on other sites More sharing options...
0 Radian Posted October 13, 2018 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Author Share Posted October 13, 2018 28 minutes ago, MathReaper said: If you are on RENEWAL go to file status.cpp and search for the function 'status_base_amotion_pc' (line 2366 actual git commit) and find the two lines: temp_aspd = status->dex * status->dex / 7.0f + status->agi * status->agi * 0.5f; and temp_aspd = status->dex * status->dex / 5.0f + status->agi * status->agi * 0.5f; change to: temp_aspd = status->agi * 0.1f; Now search for: temp_aspd = (float)(sqrt(temp_aspd) * 0.25f) + 0xc4; change to: temp_aspd += 0xc4; I'm running my server on pre renewal... Quote Link to comment Share on other sites More sharing options...
0 MathReaper Posted October 13, 2018 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 57 Reputation: 14 Joined: 09/01/18 Last Seen: May 26, 2023 Share Posted October 13, 2018 41 minutes ago, Radian said: I'm running my server on pre renewal... And you say just now? it's not a really important info, isn't it? Whatever. Quote Link to comment Share on other sites More sharing options...
0 Radian Posted October 13, 2018 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Author Share Posted October 13, 2018 23 minutes ago, MathReaper said: And you say just now? it's not a really important info, isn't it? Whatever. I'm sorry my bad... 9 minutes ago, MathReaper said: Ok, in the 'status_base_amotion_pc' function on status.cpp file, search for: amotion -= amotion * (4 * status->agi + status->dex) / 1000; Change to: amotion -= amotion * 2 * status->agi / 1000; Yeah... im testing this atm. thanks for helping me Quote Link to comment Share on other sites More sharing options...
Question
Radian
While I was searching the answer for my problem. I cannot find any exact answers.
My issue is I want to remove dex on adding aspd and make 10 AGI = 1 aspd.
Thanks in advance

Edited by RadianLink to comment
Share on other sites
5 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.