Jump to content
Sign in to follow this  
Zero Human

Old Falconier Setting

Recommended Posts

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:

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

 

Edited by Zero Human

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.