Olivier13300 Posted October 11, 2024 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 7 Reputation: 2 Joined: 06/15/23 Last Seen: March 4 Share Posted October 11, 2024 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 1 Quote Link to comment Share on other sites More sharing options...
b1rbert Posted October 11, 2024 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 47 Reputation: 3 Joined: 05/04/14 Last Seen: 3 hours ago Share Posted October 11, 2024 Sounds interesting, can you elaborate? Does it show your ATK as % in the Stat window? Quote Link to comment Share on other sites More sharing options...
Olivier13300 Posted October 14, 2024 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 7 Reputation: 2 Joined: 06/15/23 Last Seen: March 4 Author Share Posted October 14, 2024 Yes, the % is displayed on the stats, so you don't have to put bonus2 bAddClass,Class_All,X; to guess how much it increases damage instead of the stats. Quote Link to comment Share on other sites More sharing options...
pengyeji Posted October 23, 2024 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 3 Reputation: 0 Joined: 09/07/22 Last Seen: 10 hours ago Share Posted October 23, 2024 On 2024/10/11 at PM4点26分, Olivier13300 said: 您好,要在续订前统计数据中显示攻击百分比 (bonus bAtkRate,n;),请打开 pc.hpp 并执行以下操作。 查找行 #define pc_leftside_atk(sd) ((sd)->battle_status.batk + (sd)->battle_status.rhw.atk + (sd)->battle_status.lhw.atk) 替换为 #定义 pc_leftside_atk(sd) (((sd)->battle_status.batk + (sd)->battle_status.rhw.atk + (sd)->battle_status.lhw.atk) * (100 + (sd)->bonus.atk_rate) / 100) 我希望这对一些人有帮助 Hello, I was testing the items here on the server and I noticed that some items that increase attack are not working, an example is the Robo Eye, it gives 2% attack and 2% magic attack, but the attack bonus is not increasing damage of the character, they told me that bAtkRate only works on RE and my server is PRE-RE, is there any way to make bAtkRate work on PRE-RE? Quote Link to comment Share on other sites More sharing options...
Akbare-2nd Posted October 31, 2024 Group: Members Topic Count: 5 Topics Per Day: 0.01 Content Count: 59 Reputation: 3 Joined: 06/11/23 Last Seen: Friday at 08:09 AM Share Posted October 31, 2024 I can't get it to show up, is there anything else that needs to be edited? Quote Link to comment Share on other sites More sharing options...
Playtester Posted November 3, 2024 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 894 Reputation: 248 Joined: 01/30/13 Last Seen: 8 hours ago Share Posted November 3, 2024 Keep in mind that most items don't actually increase AtkRate even though the item description says so. What they actually do is increase damage against all races by x%. This is true for all items in pre-renewal. Blue Pajamas Hat in re should work though with the code proposed above. 1 1 Quote Link to comment Share on other sites More sharing options...
Olivier13300 Posted November 4, 2024 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 7 Reputation: 2 Joined: 06/15/23 Last Seen: March 4 Author Share Posted November 4, 2024 On 10/23/2024 at 3:49 PM, pengyeji said: Hello, I was testing the items here on the server and I noticed that some items that increase attack are not working, an example is the Robo Eye, it gives 2% attack and 2% magic attack, but the attack bonus is not increasing damage of the character, they told me that bAtkRate only works on RE and my server is PRE-RE, is there any way to make bAtkRate work on PRE-RE? You just have to go in pc.hpp and to seek the line which I indicated above and to modify it, that should function, Attention the emulators of a year with the other one that it is possible that that does not function, because the sources are to modify. This code works with emulators 2024, I have not tried on older. Quote Link to comment Share on other sites More sharing options...
Olivier13300 Posted November 4, 2024 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 7 Reputation: 2 Joined: 06/15/23 Last Seen: March 4 Author Share Posted November 4, 2024 I'm putting up some screenshots to show you how it works on the pre-re with the source code I've supplied, but be careful, you need to have stats otherwise it won't be calculated. 1 Quote Link to comment Share on other sites More sharing options...
pengyeji Posted November 4, 2024 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 3 Reputation: 0 Joined: 09/07/22 Last Seen: 10 hours ago Share Posted November 4, 2024 3 hours ago, Olivier13300 said: 你只需要进入 pc.hpp 并寻找我上面指出的行并修改它,它应该起作用,注意一年的模拟器与另一个模拟器,它可能不起作用,因为来源是要修改的。这段代码适用于模拟器 2024,我还没有在旧版本上尝试过。 I tried but couldn't Quote Link to comment Share on other sites More sharing options...
b1rbert Posted November 4, 2024 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 47 Reputation: 3 Joined: 05/04/14 Last Seen: 3 hours ago Share Posted November 4, 2024 got the chance to finally try it out and it works like a charm. here are the pictures: DB entry. Card of choice was Turtle General since he already has +20% ATK in his description. changed the bAllClass to bAtkRate. next the two pictures taken before compiling the server with his code: before code and compile = no turtle general card: and with turtle general card: ( dont know why the picture is blurry) and here is after compiling with his code: I increased my STR to make the atk value hit close to 10000 so I can test if it actually shows 20% increase and it certainly does! after code and compile = no turtle general: and with turtle general card: can see that the code works and shows 20% atk increase! thanks for sharing your code, I was always bugged as to why atk bonus % wont show any changes but now it actually does! especially nice since I want to work with random stats on gear and atk% never showed up Quote Link to comment Share on other sites More sharing options...
Olivier13300 Posted November 4, 2024 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 7 Reputation: 2 Joined: 06/15/23 Last Seen: March 4 Author Share Posted November 4, 2024 6 hours ago, b1rbert said: got the chance to finally try it out and it works like a charm. here are the pictures: DB entry. Card of choice was Turtle General since he already has +20% ATK in his description. changed the bAllClass to bAtkRate. next the two pictures taken before compiling the server with his code: before code and compile = no turtle general card: and with turtle general card: ( dont know why the picture is blurry) and here is after compiling with his code: I increased my STR to make the atk value hit close to 10000 so I can test if it actually shows 20% increase and it certainly does! after code and compile = no turtle general: and with turtle general card: can see that the code works and shows 20% atk increase! thanks for sharing your code, I was always bugged as to why atk bonus % wont show any changes but now it actually does! especially nice since I want to work with random stats on gear and atk% never showed up I'm glad it's working for you too. Quote Link to comment Share on other sites More sharing options...
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.