Enkel Posted August 8, 2024 Group: Members Topic Count: 4 Topics Per Day: 0.02 Content Count: 8 Reputation: 0 Joined: 08/08/24 Last Seen: Tuesday at 12:22 AM Share Posted August 8, 2024 Is there any chance we modify our damage output while doing Double Attack? Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted August 20, 2024 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 894 Reputation: 248 Joined: 01/30/13 Last Seen: 17 hours ago Share Posted August 20, 2024 In battle.cpp this is where the multi attack from TF_DOUBLE is triggered: if( rnd()%100 < max_rate ) { wd->div_ = skill_get_num(TF_DOUBLE,skill_lv?skill_lv:1); wd->type = DMG_MULTI_HIT; } But at this point the damage is not calculated yet. So I'm not fully sure how to best go about this. You could remember in a variable that this was applied and then add damage later on based on that. The code for renewal and pre-renewal is pretty different so the solution is also different in both cases. In renewal I think damage just get added on top, so you could actually just put the bonus damage in the damage variable here directly. But in pre-renewal, the calculation is reset when calling "battle_calc_skill_base_damage", so you'd need to add the damage after that. Quote Link to comment Share on other sites More sharing options...
Question
Enkel
Is there any chance we modify our damage output while doing Double Attack?
Link to comment
Share on other sites
1 answer 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.