Jump to content
  • 0

I want how Auto Blitz Beat do not divide the damage.


mindrnp13

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  2
  • Reputation:   0
  • Joined:  08/25/16
  • Last Seen:  

as it Ragnarok ep.4.0

1. Auto Blitz Beat do not divide  damage.

2. Auto Blitz Beat occurring automatically per shot with a bow ,dagger and Unarmed

 

example

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 1

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  1
  • Reputation:   3
  • Joined:  02/03/17
  • Last Seen:  

On Battle.c

Find and remove: 

if(mflag > 1) //Autocasted Blitz
	nk |= NK_SPLASHSPLIT;

This will remove the splash damage part.

On Skill.c

Find:

if(sd) {
		// Automatic trigger of Blitz Beat
		if (pc_isfalcon(sd) && sd->status.weapon == W_BOW && (skill=pc_checkskill(sd,HT_BLITZBEAT))>0 &&
			rnd()%1000 <= sstatus->luk*10/3+1 ) {
			rate=(sd->status.job_level+9)/10;
			skill_castend_damage_id(src,bl,HT_BLITZBEAT,(skill<rate)?skill:rate,tick,SD_LEVEL);
}

If you want to enable auto blitz beat with every weapon type, remove this:

&& sd->status.weapon == W_BOW

If you want to enable auto blitz beat on every attack, remove this:

&& rnd()%1000 <= sstatus->luk*10/3+1 

 

Hope it helps =)

  • Upvote 3
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  2
  • Reputation:   0
  • Joined:  08/25/16
  • Last Seen:  

thank you very much.
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...