mindrnp13 Posted March 1, 2017 Posted March 1, 2017 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 Quote
1 Fiska Posted March 2, 2017 Posted March 2, 2017 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 =) 3 Quote
Question
mindrnp13
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.