Trove simple anti-afk.
hi
, this is first thing i wrote. it just clicks m for map every 80 sec. just copy this into new AHK file, u can get AHK(auto hot key) on google
this work on multiple instances, and even if minimized.
Risks: will also click m for other games, but not word or web searching.
Disclaimer: i am not responsible for any ban u might get, although chances are small.
Code:
#Persistent
SetTimer, noafk, 80000
return
noafk:
WinGet, winList, List, ahk_class SDL_app
Loop % winList
ControlSend,, {m},% "ahk_id " winList%a_index%
return
, this is first thing i wrote. it just clicks m for map every 80 sec. just copy this into new AHK file, u can get AHK(auto hot key) on google
this work on multiple instances, and even if minimized.
Risks: will also click m for other games, but not word or web searching.
Disclaimer: i am not responsible for any ban u might get, although chances are small.
Code:
#Persistent
SetTimer, noafk, 80000
return
noafk:
WinGet, winList, List, ahk_class SDL_app
Loop % winList
ControlSend,, {m},% "ahk_id " winList%a_index%
return

