Added the pause and will include it in the next release.
Anyone wanting to add it just use the following code.
F12 will put the bot in Pause Mode
F11 will put the bot back in normal Mode.
Add the Function above the main loop.
Code: Register to unlock hidden link
' Will Pause the bot when hitting F12
' Will UnPause the Bot when you hit F11
Function Pause
Dim WAIT
WAIT = 1
if GetAsyncKeyState(123) then
Sleep 100
do while (WAIT = 1)
Sleep 1000
if GetAsyncKeyState(122) then
WAIT = 0
End if
loop
End if
End Function
Then call the function a couple times in the main loop or the kill loop depends where you want to be able to pause the bot from.
Code: Register to unlock hidden link
Pause
Thanks for the info Wyvernx