PostAnti-afk script (Autoit3)

Posts 115 of 54 · Page 1 of 4
Anti-afk script (Autoit3)
From a couple threads seen there's a want for anti-afk scripting, surprised most don't know just doing this from autoit, but anyway..
This is what I have set up when I'd like to just stay on. This should be self explanatory, but just wait til the GTAV window is active, hit pagedown key to activate, end key to stop, if you tab out use the antiidle hotkey again.

Download the latest autoit, save this as an *.au3 file, compile and use the exe, or just run it.

Code:
#include <AutoItConstants.au3>
Global $Paused = False

   ;The below turn anti-idle on or off, should you have tabbed out, you'll need to push this hotkey again.
   HotKeySet("{PGDN}","antiidle")
   HotKeySet("{END}", "pauseantiidle")
   
   WinWaitActive("Grand Theft Auto V")

   While WinActive ("Grand Theft Auto V")
	  If WinActive ("Grand Theft Auto V") Then

		 Func antiidle()
			While WinActive ("Grand Theft Auto V")
			   Send("{z 1}")
			   Sleep(1000)
			Wend
		 EndFunc

		 Func pauseantiidle()
			   $Paused = Not $Paused
			While $Paused
			   Sleep(500)
			WEnd
		 EndFunc

	  Else
		 ; if you tab out it will automatically pause
		 WinWaitActive ("Grand Theft Auto V", "")

	  Endif

   Wend
Not to be shit posting or anything but my auto it anti-afk is on the front page of GTAV hacks and has been there since November of 2016. If they really wanted one all they had to do was scroll or search. And mine is compiled...
Quote Originally Posted by Itzyoboyair View Post
Not to be shit posting or anything but my auto it anti-afk is on the front page of GTAV hacks and has been there since November of 2016. If they really wanted one all they had to do was scroll or search. And mine is compiled...
Seems most ppl are to stupid or dumb to do things like that they don't seem to know how to use scroll or search engine
Quote Originally Posted by realdealxx View Post
Seems most ppl are to stupid or dumb to do things like that they don't seem to know how to use scroll or search engine
I get not using the search engine. But not using scroll? HOW THE LIVING FUCK DO THEY PLAY GTA THEN? That is border line mentally retarded.
Open up M menu and put something on your arrow key so it is pressed. Voilá anti-anti-afk without any scripts.

Does someone here care that anti-afk isn't the correct title for this kind of tool?
I made one based on this its simpler and also doesn't consume anything from the computer at all as every other anti-afk here (including from itzyoboyair) does cause the commands are made in milliseconds. And Why the tittle isn't correct? What should be then?
it works like a charm, i stopped by and i dont regret it
Seems interesting, thanks for sharing.
Seems itneresting ! Gonna try it in an hour thanks for sharing!

- - - Updated - - -

132367464576
I am not really sure why afk requires a script or any kind of 3rd party tool. The game itself supports it! Just watch TV in the apartment
Alwaays wanted this since I AFK alot(masterbating lel)
this is futile if you alt tab the game, the script says it will still work if you press the anti-idle key again (PgDn) but that is BS.
Posts 115 of 54 · Page 1 of 4

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?