Archeage - Anti AFK menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 41
  1. #1
    Rido10's Avatar Member
    Reputation
    4
    Join Date
    Mar 2014
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Archeage - Anti AFK

    We all know (or at least most of us) that Free-To-Play users have to be online to recieve labor points right? So this tool is a MUST - HAVE for F2P or even Patron players.
    All this does is from time to time...it Jumps.

    I'm not sure about this but, i think it works with game minimized.

    Intructions:

    1- VirusScan
    2- Download (at your own risk)
    3- Extract
    4- Run
    5- F10 (Toggle)
    6- F11 (Exit)

    DOWNLOAD:
    HTML Code:
    http://speedy.sh/Xzuda/Para-s-Anti-AFK.zip

    Tool Creds:
    Paraly

    Source code by: Parog

    Code:
    #RequireAdmin
    
    HotKeySet("{F10}", "_toggle_tooltip")
    HotKeySet("{F11}", "_exit")
    AdlibRegister("_Send_key",30000)
    
    Global $tooltip = True
    
    
    $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()
        $title = WinGetTitle("[CLASS:ArcheAge]", "")
        ControlSend($title, "", "", "{space down}")
        Sleep(120)
        ControlSend($title, "", "", "{space 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")
    EndFunc
    
    Func _exit()
        Exit
    EndFunc
    Last edited by Rido10; 09-19-2014 at 06:55 AM.

    Archeage - Anti AFK
  2. #2
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    It would be safer just to post an autohotkey script or something like that. Also, lol @ jumping being all you need to do for anti-afk =P

  3. #3
    Domo Kun's Avatar Active Member R.I.P. MGK ! ~HAHA~ CoreCoins Purchaser
    Reputation
    73
    Join Date
    Sep 2010
    Posts
    413
    Thanks G/R
    70/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if i even get in, Lol +rep

  4. #4
    Rido10's Avatar Member
    Reputation
    4
    Join Date
    Mar 2014
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    It would be safer just to post an autohotkey script or something like that. Also, lol @ jumping being all you need to do for anti-afk =P
    I do agree with all you've said....Autohotkey Scripts are easy to do, but we also know that there are lazy people over here (Me included) and this just makes things easyer for everyone.

    EDIT: With AutoHotKey you couldn't be doing something else on your computer, and with this tool, at least from what i see, you can have game minimized and do other things while the tool keeps you "active" inside the game
    Last edited by Rido10; 09-17-2014 at 04:28 PM.

  5. #5
    nagymajom's Avatar Member
    Reputation
    2
    Join Date
    Jul 2012
    Posts
    57
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by .com View Post
    if i even get in, Lol +rep
    well idd. make a realm based game in 2014 is a huge mistake.

  6. #6
    woodlawnje's Avatar Private
    Reputation
    1
    Join Date
    May 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    whenever I get out of this f-ing queue I will try this out.

  7. #7
    Kefaa'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)
    Has anyone tried this? After the queues today it seems like I don't have a choice but to do this...

  8. #8
    breadn56's Avatar Member
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Confirmed this is working and able to use while minimized. Thanks so much, just wondering if this will need updates after every AA patch?

  9. #9
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,169
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The source for those of you wondering; (I can't vouch this is really what's in the exe - but if you want to compile it yourself / run as script you can.)

    Code:
    #RequireAdmin
    
    HotKeySet("{F10}", "_toggle_tooltip")
    HotKeySet("{F11}", "_exit")
    AdlibRegister("_Send_key",30000)
    
    Global $tooltip = True
    
    
    $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()
        $title = WinGetTitle("[CLASS:ArcheAge]", "")
        ControlSend($title, "", "", "{space down}")
        Sleep(120)
        ControlSend($title, "", "", "{space 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")
    EndFunc
    
    Func _exit()
        Exit
    EndFunc
    Should probably include that in the first post
    What's a Parog?
    Looking for competitive Valorant team!

  10. #10
    Rido10's Avatar Member
    Reputation
    4
    Join Date
    Mar 2014
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Parog View Post
    The source for those of you wondering; (I can't vouch this is really what's in the exe - but if you want to compile it yourself / run as script you can.)

    Code:
    #RequireAdmin
    
    HotKeySet("{F10}", "_toggle_tooltip")
    HotKeySet("{F11}", "_exit")
    AdlibRegister("_Send_key",30000)
    
    Global $tooltip = True
    
    
    $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()
        $title = WinGetTitle("[CLASS:ArcheAge]", "")
        ControlSend($title, "", "", "{space down}")
        Sleep(120)
        ControlSend($title, "", "", "{space 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")
    EndFunc
    
    Func _exit()
        Exit
    EndFunc
    Should probably include that in the first post
    Thank you, also i've updated the thread with your info.

  11. #11
    littleguykoyo's Avatar Member
    Reputation
    7
    Join Date
    Oct 2013
    Posts
    76
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    whats the difference between this and an auto keyboard like Auto Keyboard I currently use an auto keyboard, which will never have to be updated because it presses the space bar for me (every few minutes). I know a difference is in the background, but other then that? You think an auto keyboard that actually presses a keyboard button for you is more safe then a program like this?

  12. #12
    yossi2684's Avatar Member
    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)
    Originally Posted by littleguykoyo View Post
    whats the difference between this and an auto keyboard like Auto Keyboard I currently use an auto keyboard, which will never have to be updated because it presses the space bar for me (every few minutes). I know a difference is in the background, but other then that? You think an auto keyboard that actually presses a keyboard button for you is more safe then a program like this?
    how did you get it to jump i tried to activate but it doesn't jump in the game and i don't see the auto keyboard working
    what to do

  13. #13
    littleguykoyo's Avatar Member
    Reputation
    7
    Join Date
    Oct 2013
    Posts
    76
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    all the auto keyboard does is press the button you want it to press at whatever time you want it pressed. So I set it to press Space, every 5min, then i click in game and turn it on and every 5min my character jumps. Change it to 5sec and test it. you'll jump every 5sec.

  14. #14
    xmanx's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    37
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its posible add to script random¨timer for jump? etc. betwen 1-5min?

  15. #15
    Silverbrain's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I really don't wish to resort to this type of behavior, but a 3.5 hour queue last night drove me over the edge. Thank you for the quick script!

Page 1 of 3 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 12:39 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search