Jump to content
  • 0

Modifying Damage Output While Double Attack


Enkel

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.02
  • Content Count:  8
  • Reputation:   0
  • Joined:  08/08/24
  • Last Seen:  

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

  • 0

  • Group:  Developer
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  894
  • Reputation:   248
  • Joined:  01/30/13
  • Last Seen:  

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...