Archeage - Anti AFK menu

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 41
  1. #16
    Maireen's Avatar Private
    Reputation
    1
    Join Date
    Sep 2014
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

    Archeage - Anti AFK
  2. #17
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,160
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Maireen View Post
    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!

  3. #18
    Firegone's Avatar Active Member
    Reputation
    19
    Join Date
    Sep 2007
    Posts
    286
    Thanks G/R
    5/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There is a new version available with randomization features :-)

  4. #19
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,160
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Firegone View Post
    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!


    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
    *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.
    What's a Parog?
    Looking for competitive Valorant team!

  5. #20
    patatjegroot's Avatar Banned
    Reputation
    6
    Join Date
    May 2013
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks, already was waiting for random sleep

  6. #21
    stevenv's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    25
    Thanks G/R
    4/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  7. #22
    sxph's Avatar Member
    Reputation
    1
    Join Date
    Sep 2014
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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.

  8. #23
    Matis02's Avatar Contributor CoreCoins Purchaser
    Reputation
    154
    Join Date
    Mar 2007
    Posts
    378
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Compiled for people that asked for it: (F10 is a toggle for on and off)
    filehosting.org | Download | not_my_anti-afker.exe

  9. #24
    sxph's Avatar Member
    Reputation
    1
    Join Date
    Sep 2014
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Matis02 View Post
    Compiled for people that asked for it: (F10 is a toggle for on and off)
    filehosting.org | Download | not_my_anti-afker.exe
    Thank you for the upload. F10 only toggles the tooltip, not the script though.

  10. #25
    seacorb's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sxph View Post
    Thank you for the upload. F10 only toggles the tooltip, not the script though.
    How do you toggle it? And is this compiled with the updated code? This is really going to come in handy with the ANTI-AFK update today!

  11. #26
    xcloudsmx's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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.

  12. #27
    Steelcraze's Avatar Private
    Reputation
    6
    Join Date
    May 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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.

  13. #28
    seacorb's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Steelcraze View Post
    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.
    that's called a fix =P I guess they werent just aimed at character select.

  14. #29
    neosho's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any fix for hackshield update??

  15. #30
    ptfock's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is the *new script with the random sleeps working?!
    Maybe just lower the sleep time?! Any ideas?!

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Anyone have a anti afk macro?
    By EternalOwnz in forum World of Warcraft General
    Replies: 9
    Last Post: 08-25-2011, 11:04 AM
  2. I got banned by using that, Anti AFK auto queue script or w/e
    By julian_in in forum World of Warcraft General
    Replies: 22
    Last Post: 11-03-2006, 02:30 PM
  3. [Bot] Anti-AFK Bot (No Injection & Focus not Needed)
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 12
    Last Post: 09-10-2006, 11:14 AM
  4. Any Anti AFK Scripts available?
    By paboee in forum World of Warcraft General
    Replies: 2
    Last Post: 08-30-2006, 09:11 AM
  5. The Most Comprehensive Anti-AFK Bot... Ever
    By Sym in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 08-24-2006, 07:30 AM
All times are GMT -5. The time now is 03:10 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search