having problem loading the script
whenever I load autohotkey I get popup error on Line 1 then it closes
if I delete that line it errors on Line 7 etc
having problem loading the script
whenever I load autohotkey I get popup error on Line 1 then it closes
if I delete that line it errors on Line 7 etc
1. Copy paste the entire script in notepad - don't modify anything if you don't know how to code with Autoit3.
2. Save it as filetype ALL - and name it anythingyouwant.au3
3. Right click the script and select Run script.
You NEED to be able to run software as admin for this to work or the keys won't be sent to the client.
What's a Parog?
Looking for competitive Valorant team!
There is a new version available with randomization features :-)
Thanks for the heads up - Here's the new modified* source; Much better as far as detection goes!
*The things changed from the original source were the update check and the stuff that automatically opens another website, because it's a competitor's website and it would be filtered out/broken. The software technically does not require any update, and all in all this could be considered removing useless feature to most people. No hard feelings Paraly. If you ever read this - You're free to share your work/make your own threads here as well.Code:#RequireAdmin Global $tooltip = True, $Current_Version = 1.10 Dim $Win_Key[6] = [ 0, "i", "p", "m", "c", "k"] HotKeySet("{F10}", "_toggle_tooltip") HotKeySet("{F11}", "_exit") AdlibRegister("_Send_key",30000) $timer = TimerInit() While 1 $timer_diff = TimerDiff($timer) If $timer_diff > 1000 And $tooltip = True Then _tooltip() $timer = TimerInit() ElseIf $tooltip = False Then ToolTip("",0,0) EndIf WEnd Func _Send_key() Sleep(Random(2000,8000,1)) $title = WinGetTitle("[CLASS:ArcheAge]", "") ControlSend($title, "", "", "{space down}") Sleep(Random(110,140,1)) ControlSend($title, "", "", "{space up}") Sleep(Random(11000,24000,1)) _Open_Random_Window() Sleep(Random(2000,14000,1)) _Open_Random_Window() EndFunc Func _Open_Random_Window() $rnd = Random(1,5,1) $title = WinGetTitle("[CLASS:ArcheAge]", "") ControlSend($title, "", "", "{" & $Win_Key[$rnd] & " down}") Sleep(Random(110,140,1)) ControlSend($title, "", "", "{" & $Win_Key[$rnd] & " up}") EndFunc Func _toggle_tooltip() $tooltip = Not $tooltip EndFunc Func _tooltip() ToolTip("F10: Toggle Tooltip" & @CRLF & "F11: Quit Anti-AFK" & @CRLF & "© Paraly",0,0,"Archeage Anti-AFK " & $Current_Version) EndFunc Func _exit() Exit EndFunc![]()
What's a Parog?
Looking for competitive Valorant team!
thanks, already was waiting for random sleep![]()
I know this might sound random but is there anyway you can make a script that will spam 1-5 keys and make it togglable ? It would make leveling for me so much more comfy and easier. I tried to make an autohotkey script but archeage detects it and then closes my archeage down
Could someone please post an updated EXE? Also, I think it would be great if there were a hotkey to turn the script on and off.
Compiled for people that asked for it: (F10 is a toggle for on and off)
filehosting.org | Download | not_my_anti-afker.exe
Thanks, this will do for now until I come up with my idea.
I am considering working on a an AHK script that simply moves the camera around every so often.
From personal experience just moving the camera [not your player] DOES reset the AFK timer. For LP regen, this would be more ideal since they now fixed the character select idle workaround.
So for example, in what I am thinking is the most non-conspicuous and least risk way: You stay in a level 1 start area, and the script just presses Mouse1, moves, releases (which causes the camera to move). I am not adept at AHK scripting so I don't know if I'll succeed but if I do I'll share it here. I just wanted to share the idea.
Nobody is likely to report you in that scenario.
Last edited by xcloudsmx; 09-24-2014 at 02:45 PM.
I cant belive nobody has stated yet that this does not actually work.
I mean the scipt runs flawless but hackshield kicks you off in less then 5min.
Any fix for hackshield update??
is the *new script with the random sleeps working?!
Maybe just lower the sleep time?! Any ideas?!