A new setting has been added to Settings.ini:
timing assist=0
#1 is true; 0 is false. Will only cancel animations after a successful hit is made. I recommend using this.
#The only downside is that if you miss your target, the animation will not be canceled early.
#See [Helpful Hints] section of the Readme for a script to spam left click
A new section has been added to the Readme:
[Helpful Hints]
Consider using the following AutoHotkey script with the animation hacks. You can change the "1" key to whatever you want.
To be extra safe, I would use an MMO mouse/keyboard instead of an AutoHotkey script.
Use this script with "timing assist" enabled, and you will attack as fast as you possibly can.
1::
while (getkeystate("1", "p"))
{
send {lbutton}
sleep, 25
}
return