For ease of Access
I wrote an AutoHotKey Script to work with this tool.
Simply, install AutoHotKey first.
Get the Script Engine here:
AutoHotkey: macro and automation Windows scripting language
Copy & Paste this to notepad.
Save as <filename>.AHK
Put the <filename>.ahk with PleaseRenameMe.exe in the same folder.
Double click <filename>.ahk to start the HotKey and it will auto start the hack as well.
Go in game and just press the HotKeys Below.
Write True: F1
Write False: F2
Exit HotKey: DEL
Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Auto Hot Key Script for MultiKill Hack ;;
;; Script by: iNFIDEL_ ;;
;; Released from: MPGH.NET ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
v_program=PleaseRenameMe.exe
SetKeyDelay, 0, 30
v_name1=iNFIDEL_
v_name2=HotKeys: F1 (ON) | F2 (OFF)
run, %v_program% , , , newpid
;you need to wait a little for the window to initialize
sleep, 1000
WinWait, ahk_pid %newpid%,
IfWinNotActive, ahk_pid %newpid%, , WinActivate, ahk_pid %newpid%,
WinWaitActive,ahk_pid %newpid%,
;create unique title so you won't be lost
WinGetTitle, v_title, ahk_pid %newpid%
v_newtitle=%v_title% - [PID: %newpid%] [%v_name1%] [%v_name2%]
WinSetTitle, ahk_pid %newpid%,,%v_newtitle%
F1::ControlSend,, yes{enter}, %v_newtitle%,,,
F2::ControlSend,, no{enter}, %v_newtitle%,,,
F4::ControlSend,, exit{enter}, %v_newtitle%,,,
You are free to modify but leave the credits alone.