Anti-AFK Bot menu

User Tag List

Thread: Anti-AFK Bot

Page 1 of 2 12 LastLast
Results 1 to 15 of 28
  1. #1
    Naravus's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Sep 2006
    Posts
    225
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Anti-AFK Bot

    Does as title says, keeps you from going AFK and sitting through a massive queue if you decide to take a break or something.

    Every 5 seconds the game will receive a command to move the character forward a smidge.

    Note: Movement of some sort, or an action, must be bound to W.
    F9 Enables
    F10 Disables

    HotKeySet("{F9}", "start")
    HotKeySet("{F10}", "stop")


    Global $WinTitle = "WildStar 6710"
    Global $Show = 0
    Global $Loop = 0


    While 1
    Sleep(2000)
    WEnd


    Func start()
    $Show = 0
    ToolTip("Script started", 0, 0)
    Sleep(2000)
    ToolTip("", 0, 0)
    If @error Then
    MsgBox(0, "Error", "Could not find Wildstar")
    Else
    While $Show == 0
    ControlSend($WinTitle,"","","w")
    Sleep(5000)
    WEnd
    EndIf
    EndFunc


    Func stop()
    $Show = 1
    ToolTip("Script stopped", 0, 0)
    Sleep(3000)
    ToolTip("", 0, 0)
    EndFunc

    Anti-AFK Bot
  2. #2
    fuxi.chinesek's Avatar Private
    Reputation
    1
    Join Date
    Jun 2014
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am looking forward to this BOT, I hope you can contact me by Skype count:fuxi.chinese. I come from China, China huge user

  3. #3
    Leaked's Avatar Member
    Reputation
    12
    Join Date
    May 2012
    Posts
    35
    Thanks G/R
    0/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good work - is there any chance to have the script look for any version of WildStar, instead of just 6710? I ask because chances are once the game keeps getting updated a lot, we'll have to go back into the script and match the number accordingly. I'm not complaining, but just a thought to make your script 100% dynamic and even more awesome sauce

    Thanks again.

    P.S. I have a keyboard macro right now in my house, afking while i'm currently at work, and all it's doing is prettying Up arrow and Down arrow lol. I'll be sure to rock this one instead once I get home.

  4. #4
    RuNKino's Avatar Member
    Reputation
    7
    Join Date
    Jun 2014
    Posts
    21
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    #include <MsgBoxConstants.au3>
    
    HotKeySet("{F9}", "start")
    HotKeySet("{F10}", "stop")
    
    Global $WinTitle = findWildstarWindowName()
    Global $Show = 0
    Global $Loop = 0
    
    While 1
    	Sleep(2000)
    WEnd
    
    Func findWildstarWindowName()
    	Local $aList = WinList()
    
    	For $i = 1 To $aList[0][0]
    		If $aList[$i][0] <> "" And BitAND(WinGetState($aList[$i][1]), 2) Then
    			If StringInStr($aList[$i][0], "Wildstar")  Then
    				return $aList[$i][0]
    			EndIf
    		EndIf
    	Next
    
    	return False
    EndFunc
    
    
    Func start()
    	$Show = 0
    	ToolTip("Script started", 0, 0)
    	Sleep(2000)
    	ToolTip("", 0, 0)
    	If @error Then
    		MsgBox(0, "Error", "Could not find Wildstar")
    	Else
    		While $Show == 0
    			ControlSend($WinTitle,"","","w")
    			Sleep(5000)
    		WEnd
    	EndIf
    EndFunc
    
    
    Func stop()
    	$Show = 1
    	ToolTip("Script stopped", 0, 0)
    	Sleep(3000)
    	ToolTip("", 0, 0)
    EndFunc

  5. #5
    Naravus's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Sep 2006
    Posts
    225
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RuNKino View Post
    Code:
    #include <MsgBoxConstants.au3>
    
    HotKeySet("{F9}", "start")
    HotKeySet("{F10}", "stop")
    
    Global $WinTitle = findWildstarWindowName()
    Global $Show = 0
    Global $Loop = 0
    
    While 1
        Sleep(2000)
    WEnd
    
    Func findWildstarWindowName()
        Local $aList = WinList()
    
        For $i = 1 To $aList[0][0]
            If $aList[$i][0] <> "" And BitAND(WinGetState($aList[$i][1]), 2) Then
                If StringInStr($aList[$i][0], "Wildstar")  Then
                    return $aList[$i][0]
                EndIf
            EndIf
        Next
    
        return False
    EndFunc
    
    
    Func start()
        $Show = 0
        ToolTip("Script started", 0, 0)
        Sleep(2000)
        ToolTip("", 0, 0)
        If @error Then
            MsgBox(0, "Error", "Could not find Wildstar")
        Else
            While $Show == 0
                ControlSend($WinTitle,"","","w")
                Sleep(5000)
            WEnd
        EndIf
    EndFunc
    
    
    Func stop()
        $Show = 1
        ToolTip("Script stopped", 0, 0)
        Sleep(3000)
        ToolTip("", 0, 0)
    EndFunc

    And there is the dynamic search function. Beat me to it >.<

  6. #6
    GemanG's Avatar Member
    Reputation
    1
    Join Date
    May 2014
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I get messages from .ahk that there is smth wrong with the script, does not work for me :S

  7. #7
    RuNKino's Avatar Member
    Reputation
    7
    Join Date
    Jun 2014
    Posts
    21
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GemanG View Post
    I get messages from .ahk that there is smth wrong with the script, does not work for me :S
    Wonderfull error message, I really know what your error is ...

  8. #8
    BlackMagician's Avatar Active Member
    Reputation
    40
    Join Date
    Sep 2012
    Posts
    89
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I get messages from .ahk that there is smth wrong with the script, does not work for me :S
    Thats an AutoIt script. (ending is .au3)
    Won't work with AutoHotkey like that (not sure because I don't use AutoHotkey myself).
    Last edited by BlackMagician; 06-02-2014 at 02:30 PM.

  9. #9
    viable's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i heard they patched something regarding ways to keep from getting logged out, Will we get banned for using this and/or keyboard macros?

  10. #10
    zftt's Avatar Private
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks... .
    Attached Thumbnails Attached Thumbnails Anti-AFK Bot-wildstar6710-jpg  
    Last edited by zftt; 06-02-2014 at 10:21 PM.

  11. #11
    3min3m87's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zftt View Post
    thanks... .
    Picture wont work

  12. #12
    dieweb's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    20
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanx ......................

  13. #13
    ryukk88's Avatar Banned
    Reputation
    1
    Join Date
    Jun 2014
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wonderfull job

  14. #14
    Killswitch27's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2014
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will someone tell me how this works? Would be much appreciated

  15. #15
    tonz134's Avatar Member
    Reputation
    1
    Join Date
    Dec 2013
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks for the script

Page 1 of 2 12 LastLast

Similar Threads

  1. Easy Mac Anti-AFK bot
    By wowpew in forum World of Warcraft Bots and Programs
    Replies: 18
    Last Post: 08-02-2007, 09:04 PM
  2. new undetectable anti-afk bot
    By twitch101 in forum World of Warcraft Bots and Programs
    Replies: 25
    Last Post: 11-04-2006, 07:32 AM
  3. Replies: 4
    Last Post: 09-18-2006, 06:38 PM
  4. [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
  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 06:42 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