Jump to content
  • 0

berserk remove two-hand quicken


nobukadnezar

Question


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  163
  • Reputation:   7
  • Joined:  01/07/12
  • Last Seen:  

Anyone realize that berserk remove the 2-hand quicken skill for Lord Knight? or it is intentionally built that way?

thanks.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.00
  • Content Count:  398
  • Reputation:   140
  • Joined:  01/04/12
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  117
  • Reputation:   167
  • Joined:  11/10/11
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  163
  • Reputation:   7
  • Joined:  01/07/12
  • Last Seen:  

It works. thanks! but 2-hand quicken with 1 agi and berserk were no longer give max aspd.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...