eppc0330 Posted June 4, 2020 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 60 Reputation: 0 Joined: 11/17/18 Last Seen: May 26 Share Posted June 4, 2020 (edited) I wonder why an item script for ATK + @ % is "bAddClass, Class_All" instead of "bAtkRate" Does it not work well If I use bAtkRate? Edited June 4, 2020 by eppc0330 Quote Link to comment Share on other sites More sharing options...
1 TheKingDino Posted June 6, 2020 Group: Members Topic Count: 13 Topics Per Day: 0.01 Content Count: 68 Reputation: 7 Joined: 02/21/19 Last Seen: December 23, 2023 Share Posted June 6, 2020 They are done this way because that's how the damage is calculated in official renewal. You can use bAtkRate,n;. It's a bonus that works. But it is unofficial. Quote Link to comment Share on other sites More sharing options...
0 eppc0330 Posted August 20, 2020 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 60 Reputation: 0 Joined: 11/17/18 Last Seen: May 26 Author Share Posted August 20, 2020 On 6/6/2020 at 12:45 PM, TheKingDino said: They are done this way because that's how the damage is calculated in official renewal. You can use bAtkRate,n;. It's a bonus that works. But it is unofficial. Oh I have checked this reply just right now. I understood. Thank you!!!! Quote Link to comment Share on other sites More sharing options...
0 Olivier13300 Posted October 11 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 7 Reputation: 2 Joined: 06/15/23 Last Seen: 6 hours ago Share Posted October 11 Hello, to display the atk in % (bonus bAtkRate,n;) on the pre-renewal stats, please open pc.hpp and do the following. Look for the line #define pc_leftside_atk(sd) ((sd)->battle_status.batk + (sd)->battle_status.rhw.atk + (sd)->battle_status.lhw.atk) replace with #define pc_leftside_atk(sd) (((sd)->battle_status.batk + (sd)->battle_status.rhw.atk + (sd)->battle_status.lhw.atk) * (100 + (sd)->bonus.atk_rate) / 100) I hope this helps a few people Quote Link to comment Share on other sites More sharing options...
0 oneandonlyblake Posted November 26 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 3 Reputation: 0 Joined: 11/15/24 Last Seen: Saturday at 01:08 PM Share Posted November 26 On 10/11/2024 at 4:28 PM, Olivier13300 said: Hello, to display the atk in % (bonus bAtkRate,n;) on the pre-renewal stats, please open pc.hpp and do the following. Look for the line #define pc_leftside_atk(sd) ((sd)->battle_status.batk + (sd)->battle_status.rhw.atk + (sd)->battle_status.lhw.atk) replace with #define pc_leftside_atk(sd) (((sd)->battle_status.batk + (sd)->battle_status.rhw.atk + (sd)->battle_status.lhw.atk) * (100 + (sd)->bonus.atk_rate) / 100) I hope this helps a few people I tried this and recompiled not working for me. Quote Link to comment Share on other sites More sharing options...
Question
eppc0330
I wonder why an item script for ATK + @ % is "bAddClass, Class_All" instead of "bAtkRate"
Does it not work well If I use bAtkRate?
Edited by eppc0330Link to comment
Share on other sites
4 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.