Old Falconier Setting

Zero Human

New member
Messages
66
Points
0
Location
Germany, Schleswig-Holstein
Emulator
Client Version
2019-06-26bRagexeRE
If you want to have the old setting, that the auto blitz beat trigger also works with daggers, here the necessary changes.

Go to src/map/skill.c:

Change this:

if (pc_isfalcon(sd) && sd->weapontype == W_BOW && (temp=pc->checkskill(sd,HT_BLITZBEAT))>0 &&


To this:

Code:
if (pc_isfalcon(sd) && (sd->weapontype == W_BOW || sd->weapontype == W_DAGGER) && (temp=pc->checkskill(sd,HT_BLITZBEAT))>0 &&
 
Last edited by a moderator:
Back
Top