[AutoIt] Simple Neutral Bot menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    MeowBird's Avatar Banned
    Reputation
    33
    Join Date
    Sep 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [AutoIt] Simple Neutral Bot

    Alrighty,

    I am getting kinda annoyed by Glider's downtime, and i know a little scripting so i thought i would write a bot useing AutoIT.

    Heres what it does:
    It tabs for neutral mobs by looking for the yellow bar that is above the mobs health bar, this is also where is tells you what the name of the mob is.

    Once it has a mob it sends the command to press the "8" hot-key on your keyboard. I used the 8 because thats where my bow is.

    Then it waits for the bows cooldown, mine is 2.4sec. and the sends the 1 key to attack, attacks for 20 seconds, then trys to loot.

    Really simple, really easy.

    WATCH OUT

    1. It will not check your toons health before attacking.
    2. It wont turn you around if your facing the wrong way.
    3. It wont buff.
    4. It wont run away if your getting pwnt.


    -feel free to take this and improve it, or just delete it and call me a newb. im not that good a scripting.

    Thanks, MeowBird

    BTW, Here is the code: (you will need to edit out some of my stuff)


    Code:
    ; <AUT2EXE VERSION: 3.1.0.4> 
    
    ; ---------------------------------------------------------------------------- 
    ; <AUT2EXE INCLUDE-START: C:\Documents and Settings\Home\My Documents\HunterBot.au3> 
    ; ---------------------------------------------------------------------------- 
    
    ; ************************************************** ************************************************** **** 
    ; NutralBot by MeowBird. 
    
    ; Globals 
    $win_title = "World of Warcraft" 
    
    ; Stuff that you may need to know. 
    ; Color of neutral mobs = 0xD2CF00 
    ; Color of hostile mobs = 0xD20000 
    ; When you use "sleep(XXX)" to wait in AutoIT 1000=1 second 
    
    ; Sets the "Pause" Key to Exit the bot. 
    HotKeySet("{PAUSE}", "EndScript") 
    
    
    
    ; Fires up WOW and makes sure its on top. I recomend Windowed Mode. 
    WinActivate($win_title, "") 
    WinSetOnTop($win_title, "", 0) 
    Sleep(1000) 
    
    
    ; Starts the whole script. This is the First mob search. after it everything is basicly handled in the loop. 
    find_Mob() 
    
    func find_Mob() 
    Send("{TAB}") 
    sleep(1000) 
    EndFunc 
    
    
    ; Scans for a neutral mob, by looking by the yellow color where the mob name is by the mobs thumbnail at the top center of the WOW screen. Edit the lines with **** to suit your needs. 
    
    While 1 
    $Coord = PixelSearch ( 0, 0, 271, 62, 0xD2CF00 , 0, 0 ) 
    If @error Then 
    sleep(1000) 
    find_Mob() 
    else 
    Send("{8}") ****This is my Bow, used for pulling. Key 8****** 
    sleep(2400) ****Speed of my bow, 2.4sec****** 
    Send("{1}") 
    sleep(20000) *****Time to Fight. 20 sec, then loot**** 
    send("{SHIFTDOWN}") 
    MouseClick("right", 507, 360, 1, 1) ***Checks for loot*** 
    send("{SHIFTUP}") 
    EndIf 
    Wend 
    
    
    ; Exits the Bot. 
    Func EndScript() 
    $exit = MsgBox(4, "Ender", "Exit the Bot?") 
    If $exit = 6 Then 
    Exit 
    EndIf 
    EndFunc
    Last edited by MeowBird; 04-08-2009 at 10:11 AM. Reason: Spelling

    [AutoIt] Simple Neutral Bot
  2. #2
    Maxmaximuss2's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    246
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    kinda sux bot.. why dont u just use zolofighter ?? much better than this crap.

  3. #3
    MeowBird's Avatar Banned
    Reputation
    33
    Join Date
    Sep 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Maxmaximuss2 View Post
    kinda sux bot.. why dont u just use zolofighter ?? much better than this crap.
    I was simply bored...... thanks for the positive feedback lol. :P

  4. #4
    JoeBiden's Avatar Contributor
    Reputation
    153
    Join Date
    Aug 2007
    Posts
    498
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Maxmaximuss2 View Post
    kinda sux bot.. why dont u just use zolofighter ?? much better than this crap.
    Maybe someone doesn't want to pay for zolofighter? I think his bot is a great startpoint for somebody who might want to improve it?

    You shouldn't call people's posts "crap" when since you started all you have contributed is posts in wrong section, bad grammar and retarded comments in general. gg

    Ontopic: It's really nice. But I don't think it would work unless you have it turn towards the mob somehow, is it hard to do?

    EDIT: Oh yes... apparently hardest part of creating a bot is figuring out the spinning arround/facing

  5. #5
    alek900's Avatar Contributor
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    101
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SKU View Post
    Please be kidding.
    they say so, I die a little inside every time...

    Edit: erh, how come my post is over SKUs?!
    19+4 that means i score

  6. #6
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JoeBiden View Post
    <snip>

    EDIT: Oh yes... apparently hardest part of creating a bot is figuring out the spinning arround/facing
    Please be kidding.

  7. #7
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JoeBiden View Post
    EDIT: Oh yes... apparently hardest part of creating a bot is figuring out the spinning arround/facing
    God I hope this is sarcasm

    if not,

    this is sigworthy.

    Edit: Thank god, didn't see it was a krypton88 pun
    Last edited by Robske; 04-08-2009 at 12:21 PM.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  8. #8
    kynox's Avatar Account not activated by Email
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JoeBiden View Post
    Oh yes... apparently hardest part of creating a bot is figuring out the spinning arround/facing
    Information posted by Krypton88 should never be taken seriously, he has a case of downs.

  9. #9
    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)
    You people dont like Krypton88 do you? :P

  10. #10
    paladinspwn's Avatar Banned
    Reputation
    16
    Join Date
    Jan 2009
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JoeBiden View Post
    Maybe someone doesn't want to pay for zolofighter?
    nubcakes. you cant buy zolo anymore. and it was just to take off the 3 hour limit. your retarded

  11. #11
    Dead_Masters's Avatar Member
    Reputation
    14
    Join Date
    Mar 2007
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this bot is simply so... omg i dont know how to say XD

    i have a selfamde very good autoit bot (nothing liek this ^^ tousands of code lines), and i think i will release them the next time, because i take zoloBot now.

    If i customized zolo enough and im sure i dont go back to my own bot, i will release.
    Stay tuned.

  12. #12
    JoeBiden's Avatar Contributor
    Reputation
    153
    Join Date
    Aug 2007
    Posts
    498
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm.. Well I learned to take everyones word in the memory editing/bot section "with a grain of salt" ... How am I supposed to know Krypton speaks BS

  13. #13
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JoeBiden View Post
    Hmm.. Well I learned to take everyones word in the memory editing/bot section "with a grain of salt" ... How am I supposed to know Krypton speaks BS
    You don't need to understand anything about reversing / memory editing to realize that compared to developing an intelligent bot logic + reversing a binary, calculating the required facing is cake.

    Also, it's not hard to tell that anyone who releases stuff like "LEET XXX REGENXXX WTFXXX" (note the XXXXXXXXX AAAAAAAAAAAAAAAAAAAH), steals other people's work and sells it is retarded.

  14. #14
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    OP.
    Everything have a start... spend some more time with it and expand your knowledge. I highly recommend staying away from pixel lookup.

    EDIT: Oh yes... apparently hardest part of creating a bot is figuring out the spinning arround/facing


    Originally Posted by Krillere View Post
    You people dont like Krypton88 do you? :P
    Hmm.. Well I learned to take everyones word in the memory editing/bot section "with a grain of salt" ... How am I supposed to know Krypton speaks BS
    I guess most people who know just a little advanced about wow and also know Krypton would agree with Kynox's statement. Then again, its not just wow related but most people prefer people who is being honest and telling the truth rather than people who don't.

    And yes, always take everything said by anyone (except the mem-elites) with a grain of salt. Its 30% bs, 55% reposting and 15% cool facts.

  15. #15
    Dead_Masters's Avatar Member
    Reputation
    14
    Join Date
    Mar 2007
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SKU View Post
    You don't need to understand anything about reversing / memory editing to realize that compared to developing an intelligent bot logic + reversing a binary, calculating the required facing is cake.
    and what is if you do it completely without memory reading? THEN this part becomes much more interesting, if you simply use memory reading everything is a piece of cake, but a full working bot without that, yes THATS hard to make.


    but not impossible.

Page 1 of 2 12 LastLast

Similar Threads

  1. Need Help [AutoIT simple bot]
    By xXxCRAZYxXx in forum Diablo 3 Bots Questions & Requests
    Replies: 1
    Last Post: 08-05-2012, 12:23 PM
  2. [AutoIt] Simple BG Bot
    By ironmaiden187 in forum World of Warcraft Bots and Programs
    Replies: 9
    Last Post: 03-13-2009, 02:27 AM
  3. AutoIt Secure AFK Bot
    By Nightfel in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 07-24-2007, 10:50 AM
  4. [AFK] Simple afk bot.
    By Hakonj in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 05-30-2007, 10:01 AM
  5. Simple Spam bot
    By WoWLegend in forum World of Warcraft Bots and Programs
    Replies: 4
    Last Post: 05-13-2007, 12:35 PM
All times are GMT -5. The time now is 09:03 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