nobukadnezar Posted May 26, 2012 Posted May 26, 2012 Anyone realize that berserk remove the 2-hand quicken skill for Lord Knight? or it is intentionally built that way? thanks. Quote
Flaid Posted May 26, 2012 Posted May 26, 2012 Berserk is meant to disable all buffs when used. { "berserk_cancels_buffs", &battle_config.berserk_cancels_buffs, 0, 0, 1, }, If you want to change that, go into src/map/battle.c, find the above mentioned code and disable it adding //. //{ "berserk_cancels_buffs", &battle_config.berserk_cancels_buffs, 0, 0, 1, }, Don't forget to recompile. Quote
Panallox Posted May 26, 2012 Posted May 26, 2012 Well, except that cancelling all buffs is disabled by default.. // Does Berserk/Frenzy cancel other self-buffs when used? berserk_cancels_buffs: no From conf/battle/skill.conf. Instead, assuming you're using renewal mode, find (in status.c): #ifdef RENEWAL else { status_change_end(bl, SC_TWOHANDQUICKEN, INVALID_TIMER); } #endif Replace with: #ifdef RENEWAL else { //status_change_end(bl, SC_TWOHANDQUICKEN, INVALID_TIMER); } #endif Quote
nobukadnezar Posted May 26, 2012 Author Posted May 26, 2012 It works. thanks! but 2-hand quicken with 1 agi and berserk were no longer give max aspd. Quote
Question
nobukadnezar
Anyone realize that berserk remove the 2-hand quicken skill for Lord Knight? or it is intentionally built that way?
thanks.
3 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.