Zero Human 0 Posted March 26, 2020 (edited) 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 March 26, 2020 by Zero Human Quote Share this post Link to post Share on other sites