This will make your 'toon jump every 60 seconds to prevent you from being AFK or kicked for idling. You can toggle it on or off, so you can just start it and WoW and then toggle it on when you need it. It just idles in the backround using up almost no resources when toggled off, and likewise when toggled on, as it's basically doing the same thing (sleep) except adding a Send Space function in there.
You press Ctrl+Alt+Z to toggle the program. (When you toggle it on your 'toon should jump once to signify that the program is on and functioning.) And you press Ctrl+Alt+X to close the program entirely.
This was inspired by a post and a nonworking script in the normal forums.
Source: (Not much of it, but meh.)
Code:
;----------------------------------------------------------------
;
;'ToonJumper Anti AFK by TempestReborne aka Tremptor
;
;Version 2.0
;
;Ctrl+Alt+Z to Toggle. Ctrl+Alt+X to Close.
;
;[email protected]
;
;----------------------------------------------------------------
$toggle = 1
HotKeySet ( "^!z" , "toggle" )
HotKeySet ( "^!x" , "close" )
While 1
Sleep ( 5000 )
WEnd
Func toggle()
If $toggle = 0 Then
$toggle = 1
start()
Else
$toggle = 0
Endif
EndFunc
Func start()
Do
Send ( "{SPACE}" )
Sleep ( 60000)
Send ( "{SPACE}" )
Until $toggle = 0
EndFunc
Func close()
Exit
EndFunc