Anti-AFK / AutoQueue Wintergrasp Bot - RUNS IN BACKGROUND menu

User Tag List

Results 1 to 11 of 11
  1. #1
    Trollin's Avatar Contributor
    Reputation
    204
    Join Date
    Nov 2008
    Posts
    1,092
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Anti-AFK / AutoQueue Wintergrasp Bot - RUNS IN BACKGROUND

    Firstly, make a macro with the following code:



    Code:
    /click StaticPopup1Button1 
    /click StaticPopup2Button1
    /script LeaveParty()
    Then, open up a new Script it in AutoIt and paste the following.. This will run in the background, and press the key 1 every 15 seconds. This means you need your macro on your ActionBar on "1". You can edit the key it presses where it is RED in the code.




    HotKeySet("{F5}", "TogglePause")
    HotKeySet("{ESC}", "Terminate")

    Global $Paused, $WinTitle ='World of Warcraft'
    TogglePause()

    While 1

    If WinExists($WinTitle) Then
    ControlSend($WinTitle, "", "", "
    1", 1)
    Sleep(1500)
    ControlSend($WinTitle, "", "", "
    1", 1)
    Sleep(15000)
    Else
    MsgBox(0, "WoW Client not found!", "WoW isn't running! Please start up WoW then run this script!" &@CRLF& "Closing script now.", "", "")
    Exit
    EndIf
    WEnd

    Func TogglePause()
    $Paused = NOT $Paused
    While $Paused
    sleep(100)
    ToolTip('Script has been paused! F5 - Pause | ESC - Exit',0,0)
    WEnd
    ToolTip("")
    EndFunc

    Func Terminate()
    Exit 0
    EndFunc




    Now that you have it made, save as .AU3 or compile to .EXE, doesn't matter.


    When you startup the script, it starts PAUSED, so press F5 to turn it on.



    F5: Pauses bot
    ESC: Closes bot


    //You can download this Script in .AU3 form HERE
    //You can download this Script in .EXE form (you won't need AutoIt for this!) HERE
    ____________________________________________

    ____________________________________________

    Anti-AFK / AutoQueue Wintergrasp Bot - RUNS IN BACKGROUND
  2. #2
    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)
    Remember that if you don't have a rank, you don't get any marks.
    That's one of the problems I had to face when I wrote my own.
    To solve that I used pixelchecksums and pixel searches to determine when a battle was going on and not.
    Kinda like:
    Code:
    check the pixelsum, if value x then $battle = true else $battle = false 
    If $battle = true then sleep(whatever)
    if $battle = false then controlsend(the macro)
    Something like that.
    Ofcourse that's not the real code...

    But work your way through it and it'll be alot more efficient


    Edit:
    Ofcourse you could call some LUA commands to get the time to battle and if nil or null, it's a battle and then make the bot do it's functions based on that result.
    OR create an addon that changes colors depending on battle or no battle.
    That's what I was trying but failed miserably.


  3. #3
    Trollblod's Avatar Elite drone
    Reputation
    445
    Join Date
    May 2009
    Posts
    1,710
    Thanks G/R
    2/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Love you, thanks, tomorrow, 10AM, behind Konsum.


  4. #4
    Trollin's Avatar Contributor
    Reputation
    204
    Join Date
    Nov 2008
    Posts
    1,092
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Thidan View Post
    Remember that if you don't have a rank, you don't get any marks.
    That's one of the problems I had to face when I wrote my own.
    To solve that I used pixelchecksums and pixel searches to determine when a battle was going on and not.
    Kinda like:
    Code:
    check the pixelsum, if value x then $battle = true else $battle = false 
    If $battle = true then sleep(whatever)
    if $battle = false then controlsend(the macro)
    Something like that.
    Ofcourse that's not the real code...

    But work your way through it and it'll be alot more efficient


    Edit:
    Ofcourse you could call some LUA commands to get the time to battle and if nil or null, it's a battle and then make the bot do it's functions based on that result.
    OR create an addon that changes colors depending on battle or no battle.
    That's what I was trying but failed miserably.

    Didn't really take getting marks into the script because I have 5/5 Relentless and no need for marks really... I guess you could make a second script with the leave party command spammed every once and a while.. But wouldn't be efficient.
    ____________________________________________

    ____________________________________________

  5. #5
    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)
    Originally Posted by Trollin View Post
    Didn't really take getting marks into the script because I have 5/5 Relentless and no need for marks really... I guess you could make a second script with the leave party command spammed every once and a while.. But wouldn't be efficient.
    That's why you need to know exactly when the battle starts and when it ends
    And I can assure you, it is efficient. But time consuming to code.

    But nonetheless, good job.


  6. #6
    Trollin's Avatar Contributor
    Reputation
    204
    Join Date
    Nov 2008
    Posts
    1,092
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Thidan View Post
    That's why you need to know exactly when the battle starts and when it ends
    And I can assure you, it is efficient. But time consuming to code.

    But nonetheless, good job.

    Yeah, thanks for the input :P
    ____________________________________________

    ____________________________________________

  7. #7
    Dist719's Avatar Active Member
    Reputation
    30
    Join Date
    Dec 2007
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice DD.....

  8. #8
    berkan12's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this a addon? :/

  9. #9
    Renyei's Avatar Contributor Hand of God
    Reputation
    112
    Join Date
    Sep 2008
    Posts
    127
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by berkan12 View Post
    Is this a addon? :/
    No, it's a script for AutoIt. Trying putting that into an LUA and running it as an addon may cause some boo boos.

  10. #10
    Lbniese's Avatar Active Member
    CoreCoins Purchaser
    Reputation
    51
    Join Date
    Sep 2009
    Posts
    346
    Thanks G/R
    1/22
    Trade Feedback
    13 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great script.
    Last edited by Lbniese; 09-23-2013 at 04:44 AM.

  11. #11
    Manisher's Avatar Active Member
    Reputation
    30
    Join Date
    Nov 2007
    Posts
    232
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks!

Similar Threads

  1. Anti-AFK Honor Leech Bot (AutoIt)
    By Subset in forum World of Warcraft Bots and Programs
    Replies: 153
    Last Post: 09-17-2010, 05:19 AM
  2. Anti-AFK / AutoQueue Wintergrasp Script - RUNS IN BACKGROUND!
    By Trollin in forum World of Warcraft Guides
    Replies: 3
    Last Post: 11-21-2009, 02:45 PM
  3. anti-afk MACRO, NO bot needed!
    By surfsem in forum World of Warcraft Exploits
    Replies: 70
    Last Post: 08-01-2008, 02:46 AM
  4. WoW anti AFK and Grinding Bot! It Works!
    By matswurld in forum World of Warcraft General
    Replies: 13
    Last Post: 06-17-2007, 08:01 PM
All times are GMT -5. The time now is 05:55 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