Hold mouse button will perform light attack followed by brief block
Software used for this macros/script
Install it then it's pretty easy, either use app to create your file or simply create notepad file copy my script and save, then instead of .txt change to .ahk
FOr whom and what weapon this timind was adjusted to
Usage of script and explanation of it's functionality
Main thing about script and it's function is simple, you hold a button it does a light attack and cancels it with block (I thing it calls QQ cancel or something) and it repeats the cycle while you hold the button
Because of ; you may leave text inside so you could always have note of what is what and apply it to to whatever melee/class combo
Script itself with step by step explanation
#
XButton1:: ;That is binded button, mouse button, usually it is scroll band in browser
While GetKeyState("XButton1", "P" ) ;First part creates a thingy that sets in motion meaning of your button, the other thingy check what button, P is to check if you still holding the button
{ ;now starts body of what's going inside the loop and this thingy in the beginning identifies the beginning
MouseClick, left
sleep, 500 ;This signifies delay aka sleep after left click with a mouse button, Put 460 if mercenary
MouseClick, right
sleep 120 ;This signifies delay needed for block, 110 For mercenary is ok
}; End of loop, I have seen some people have return written after this thingy but this loop works with
This guide was created by its original author on the Steam Community. Are you the author and want it removed? Request removal.