Sunday, June 14, 2009
Warhammer online Anti Afk Bot With AutoHotkey
Download AHK from http://www.autohotkey.com/
Open a new .txt file and copy/paste below script then save the file as .ahk with save type as all files.Start script with ahk when you hit insert in game your char will jump in evey 5 min.If you want to change timing just change sleep value.
#SingleInstance,Force
#MaxThreadsPerHotkey 2
var = 0
return ; end of autoexecute section
INS::
var := !var
Loop
{
if !var
break
Send, {Space}
Sleep, 300000
}
return
sleep value is in milliseconds, where as 1000 = 1 second. Thus 300000 = 300 seconds, or 5 minutes. Keep this in mind when changing the value, as 300999 is going to be almost 5 minutes and 1 second.
Subscribe to:
Post Comments (Atom)
0 kommentarer:
Post a Comment