Jump to content
  • 0

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


Question

Posted

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

 

2 answers to this question

Recommended Posts

  • 1
Posted

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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...