10-06-2013, 12:04 AM
I dont know the thread no. Plus i wouldnt want to advertise another bot on this forum. But i can however probably find you something. Here it is
download and install autohotkey, create a script and paste this into it. When you run the script and you're in game, pressing insert on your keyboard will toggle this on and off sending a jump key every 900000 milliseconds, aka 15 minutes. Should prevent you from logging out
download and install autohotkey, create a script and paste this into it. When you run the script and you're in game, pressing insert on your keyboard will toggle this on and off sending a jump key every 900000 milliseconds, aka 15 minutes. Should prevent you from logging out
Quote:#SingleInstance,Force
#MaxThreadsPerHotkey 2
var = 0
return ; end of autoexecute section
INS::
var := !var
Loop
{
if !var
break
Send, {Space}
Sleep, 900000
}
return