[REQ] Anti-AFK .ahk

unbelievable

Active member
Joined
Aug 1, 2018
Messages
36
Reaction score
6
Location
Serbia
#1
Name of the mod (if the mod doesn't exist, you don't have to tell one): anti-afk .ahk
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): //
* What do you want (the most important part, explain this carefully): i want some1 to make the anti-afk which does /id every 9 minutes and tabs you out, then tabs you in after 9 minutes and writes /id and repeats that
* Details (add more details to your request) .ahk
* On/off key (specify it): insert
 

Jayco

Active member
Joined
Feb 7, 2015
Messages
52
Reaction score
2
Try this

Code:
#MaxThreadsperHotkey 2
F2 & x:: ;Activation key F2 + x
toggle := !toggle ; toggling on or off when pressing the same key
loop ; will make a loop
{
if not toggle
break
sendinput t/id{enter}
sleep 1200
send {TAB}
sleep 90000
}
return
 
Top