Hold mouse button will perform light attack followed by brief block

Warhammer: Vermintide 286 views1 min readby God's wrath incarnate aka RandyUpdated 3 Dec, 2023View on Steam ↗

Software used for this macros/script

This is AutoHotkey macros, that's a software, download it from official site: https://www.autohotkey.com/
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

Timing is made specifically for Kruber wielding Bretonian long sword without any additional attack speed bonuses/bufs, could be done for every little thing and circumstances but the separate speeds must be attached to different keys.

Usage of script and explanation of it's functionality

After you have "yourname.ahk" file run it and it's ready to go.

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.