• Please make sure you are familiar with the forum rules. You can find them here: https://forums.tripwireinteractive.com/index.php?threads/forum-rules.2334636/

Beta Release [Keybinds] Berserker Auto Fire

clconx

Grizzled Veteran
May 4, 2015
62
2
Italy



82txOeS.jpg



KF2 Zerk Tool

padVZy0.jpg


New Tool for Berserker. Single file, no need installation.
You can change mouse auto-fire options in real-time and save settings.
With Autorun enabled you don't need to hold shift button to keep running, like all modern shooters.
It's recommended to run it as administrator.




Download

http://www.mediafire.com/file/ht3wgcuea3snenq/KF2_Zerk_Tool_v07.rar




--------------------------------------------- OLD Version ---------------------------------------------




I love katana auto fire on KF1, so I tried to get the same result for KF2 :D

Berserker Auto Fire
No much to explain. All 3 mouse buttons now can switch from standard fire to auto fire.

My advice is to map:
Left Mouse Button = light attack
Right Mouse Button = strong attack
Middle Mouse Button = stab

By default auto fire is disabled.
F1 ENABLE AUTO FIRE
F2 DISABLE AUTO FIRE

Auto Run is always enabled.




Download
http://www.mediafire.com/download/73...r_Auto_1.0.rar
 
Last edited:
This is the source code. Nothing is injected into the process, i haven't the skills :D

Code:
DetectHiddenWindows, On
Run, steam://rungameid/232090
sleep, 30000
WinWaitClose, ahk_exe KFGame.exe
ExitApp

Toggle=0
#MaxThreadsPerHotkey 2

F1::
Toggle=1
return

F2::
Toggle=0
return

#if (Toggle)

LButton::
while GetKeyState("LButton","P")
{
click
sleep, 30
}
return

RButton::
while GetKeyState("RButton","P")
{
click Right
sleep, 50
}
return

MButton::
while GetKeyState("MButton","P")
{
click Middle
sleep, 50
}
return

shift::
while GetKeyState("w","P") or GetKeyState("a","P") or GetKeyState("s","P") or GetKeyState("d","P")
{
send {shift Down}
sleep, 10
if GetKeyState("LButton","P")
Gosub, LButton
if GetKeyState("RButton","P")
Gosub, RButton
if GetKeyState("MButton","P")
Gosub, MButton
}
send {shift Up}
return

#if

shift::
while GetKeyState("w","P") or GetKeyState("a","P") or GetKeyState("s","P") or GetKeyState("d","P")
{
send {shift Down}
sleep, 10
}
send {shift Up}
return
 
Upvote 0