Z's Simple Anti-AFK Bot (Source Included) menu

User Tag List

Results 1 to 6 of 6
  1. #1
    =Z='s Avatar Contributor
    Reputation
    90
    Join Date
    Aug 2009
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Z's Simple Anti-AFK Bot (Source Included)

    Here's yet another bot similar to my others, no hooks / injection, it pretty much jumps then moves you a bit and repeats every 30 seconds, it is more active than it needs to be so adjust the timing if you want.


    How to use the bot
    1. Go to wherever you want to anti-afk in wow.
    2. Tab out and open this script in AutoIt
    3. Tools - > go
    4. Bot will maximize wow and keep you anti-afk'd


    Code:
    ; __      __            .__       .___         _____ 
    ;/  \    /  \___________|  |    __| _/   _____/ ____\
    ;\   \/\/   /  _ \_  __ \  |   / __ |   /  _ \   __\ 
    ; \        (  <_> )  | \/  |__/ /_/ |  (  <_> )  |   
    ;  \__/\  / \____/|__|  |____/\____ |   \____/|__|   
    ;       \/                         \/                
    ; __      __                                    _____  __   
    ;/  \    /  \_____ _______   ________________ _/ ____\/  |_ 
    ;\   \/\/   /\__  \\_  __ \_/ ___\_  __ \__  \\   __\\   __\
    ; \        /  / __ \|  | \/\  \___|  | \// __ \|  |   |  |  
    ;  \__/\  /  (____  /__|    \___  >__|  (____  /__|   |__|  
    ;       \/        \/            \/           \/             
    ;/###########################################################\
    ; Anti-AFK Bot	 							Created by: =Z=  #
    ;************************************************************#
    ;															 #
    ;*************												 #
    ; Description 												 #
    ;*************											     #
    ; This bot will anti-afk using various movements indefinitely#
    ;															 #
    ;*************												 #
    ; Features													 #
    ;*************												 #
    ; • NO injection, this bot is as safe as botting can get!    #
    ;\###########################################################/
    
    ;MAIN MACRO
    
    WinActivate("World of Warcraft") ; activate window
    ToolTip("Opening WoW window...", 0, 0); displays tooltip in top left corner
    WinWaitActive("World of Warcraft") ; wait untill the window is activeWinActivate("World of Warcraft")
    	
    While 1=1
    	ToolTip("Starting Anti-AFK routine", 0, 0); displays tooltip in top left corner
    	WinWaitActive("World of Warcraft")
    	Send ("{SPACE}")
    	Sleep(Random(1125,1275))
    	Send ("b")
    	Sleep(Random(1025,1250))
    	Send ("{LEFT down}")
    	Sleep (1000)
        Send ("{LEFT up}")
    	Sleep (1000)
    	Send ("{RIGHT down}")
    	Sleep (1000)
    	Send ("{RIGHT up}")
    	Sleep (1000)
    	Send ("{w down}")
    	sleep (1000)
    	Send ("{w up}")
    	Sleep (1000)
    	Send ("{s down}")
    	sleep (1000)
    	Send ("{s up}")
    	Sleep (1000)
    		For $i = 15 to 1 Step -1
    		ToolTip("Waiting 30 seconds to repeat routine... tick tock...    ( | )", 0, 0); displays tooltip in top left corner
    		Sleep (500)
    		ToolTip("Waiting 30 seconds to repeat routine... tick tock...    ( \ )", 0, 0); displays tooltip in top left corner
    		Sleep (500)
    		ToolTip("Waiting 30 seconds to repeat routine... tick tock...    ( | )", 0, 0); displays tooltip in top left corner
    		Sleep (500)
    		ToolTip("Waiting 30 seconds to repeat routine... tick tock...    ( / )", 0, 0); displays tooltip in top left corner
    		Sleep (500)
    		Next
    Wend
    As always I hope everyone gets some use out of this bot, please post any features / additions / praise or criticism as I will do my best to respond in time.

    Enjoy :wave:
    Last edited by =Z=; 09-22-2009 at 12:17 AM.

    Z's Simple Anti-AFK Bot (Source Included)
  2. #2
    xdpirate's Avatar Member
    Reputation
    3
    Join Date
    Apr 2009
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This could've been done with only 6 lines of code.

    Code:
    WinActivate("World of Warcraft")
    WinWaitActive("World of Warcraft")
    While 1=1
    	Send ("{SPACE}")
    	Sleep("30000")
    WEnd
    Jumps every 30 secs.

  3. #3
    Krillere's Avatar Contributor
    Reputation
    112
    Join Date
    Nov 2007
    Posts
    668
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xdpirate View Post
    This could've been done with only 6 lines of code.

    Code:
    WinActivate("World of Warcraft")
    WinWaitActive("World of Warcraft")
    While 1=1
        Send ("{SPACE}")
        Sleep("30000")
    WEnd
    Jumps every 30 secs.
    Lol GJ! + Rep for that one. Made my day!

  4. #4
    =Z='s Avatar Contributor
    Reputation
    90
    Join Date
    Aug 2009
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Indeed, the only issue I had with that (which is what I had before) was lag occasionally screwing it up, thus the redundant extra steps and such.

  5. #5
    Staunton's Avatar Member
    Reputation
    4
    Join Date
    Jun 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    but urs c ould lag it more due to soo much code the simpler the better

  6. #6
    Thidan's Avatar Contributor
    Reputation
    299
    Join Date
    Jan 2007
    Posts
    1,009
    Thanks G/R
    2/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    While 1
        ControlSend ("World of Warcraft", "", "{SPACE}")
        Sleep("30000")
    WEnd
    4 lines even.


Similar Threads

  1. Simple Anti-AFK bot
    By XXL in forum World of Warcraft Bots and Programs
    Replies: 3
    Last Post: 03-12-2009, 02:55 AM
  2. Simple Anti-Afk bot
    By Manky in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 10-11-2008, 05:48 PM
  3. Kekteam Simple anti Afk bot
    By Zulrex in forum World of Warcraft Bots and Programs
    Replies: 18
    Last Post: 07-16-2008, 07:26 AM
  4. [marathon] Simple EASY TO USE BG Anti-AFK Bot
    By marathon in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 12-15-2007, 05:01 PM
All times are GMT -5. The time now is 10:08 AM. 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