How to make your own bots! menu

User Tag List

Results 1 to 11 of 11
  1. #1
    Zeltraz500's Avatar Banned
    Reputation
    11
    Join Date
    Jul 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to make your own bots!

    My name is Zeltraz and im going to show you how to create your own bots using auto it v3! Follow this guide and you can be on your way to making the next Glider!

    First we need our program, its called Auto It 3.
    Auto It 3 is a very cool and easy languege. where you can make bots. Now not only bots Auto It 3 can do a medly of different things. Its a great languege. Heres the download link:


    http://www.autoitscript.com/cgi-bin/...t-v3-setup.exe

    That is a whole package of cool things, what we are going to use is Aut2Exe and Scite. Scite is the editor where you can make your auto it scripts and compile/run them.

    Once thats done open the scite script editor in the scite folder.
    Now here is where the fun comes!

    Auto It has a great way of sending keystrokes to an application. Think of keystrokes as keys on your keyboard being automaticly pressed by your computer. Lets say a keystroke of "w" is sent to world of warcraft, that means your character will move up (If w is hotkeyed to move up "Default"). People make bots by sending numerous keystrokes to the game.
    Now this is how to make keystrokes
    First we want to make sure were sending the keystrokes to WoW, so we put this into the script editor:

    WinWaitActive("World of Waracraft")
    Now open up WoW, and if you run the script, you should see WoW will become your main process on your computer (It wil jump to the front).
    Now that we got that settled lets start sending keystrokes!
    How to send keystrokes:

    Send ("Any Letter")
    Now in this example I put Any Letter, because anything can be put their, but for your example lets put this:

    Send ("w")


    Now if you run the script your character probably won't move, because its just 1 keystroke, and to send a keystroke to a game you need more than just one w, but trust me it should be working!
    Now you should have something like this in your editor
    WinWaitActive("World of Warcraft")
    Send ("w")

    Now lets say I want to send more than just a "w" to WoW, I want to send 30 "w"s!
    This is what we put

    Send ("{w 30}")

    When you put the { } in the send and put a number after the keystroke, it sends the keystroke that many times!

    Now you can continue on writing send commands of behavours you want your character to do!

    For example:
    WinWaitActive("World of Warcraft")
    Send ("{w 30}")
    Send ("{s 10}")


    Some helpful tips:

    You might want to use the sleep command, this delays your script and puts pauses inbetween the commands where the sleep is put: you do this:


    sleep (300)

    Also if you want to make an application that looks professional, and not just run the script, you can make a GUI in autoit, a GUI creates a screen of buttons and things to click, its very neat, you can find out more on this in the auto it 3 guide in your folder.

    Heres an example of a GUI taken from the autoit help guide:

    #include <GUIConstantsEx.au3>

    Opt('MustDeclareVars', 1)

    Example()

    Func Example()
    Local $Button_1, $Button_2, $msg
    GUICreate("My GUI Button") ; will create a dialog box that when displayed is centered

    Opt("GUICoordMode", 2)
    $Button_1 = GUICtrlCreateButton("Run Notepad", 10, 30, 100)
    $Button_2 = GUICtrlCreateButton("Button Test", 0, -1)

    GUISetState() ; will display an dialog box with 2 button

    ; Run the GUI until the dialog is closed
    While 1
    $msg = GUIGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
    ExitLoop
    Case $msg = $Button_1
    Run('Notepad.exe') ; Will Run/Open Notepad
    Case $msg = $Button_2
    MsgBox(0, 'Testing', 'Button 2 was pressed') ; Will demonstrate Button 2 being pressed
    EndSelect
    WEnd
    EndFunc ;==>Example


    If you see where it says
    Case $msg = $Button_1
    Run('Notepad.exe')


    You can change that to
    Case $msg = $Button_1
    WinWaitActive("World of Warcraft")
    Send ("{w 30}")
    Send ("{s 10}")

    so then the button runs your bot script after being clicked!

    Enjoy and have fun

    How to make your own bots!
  2. #2
    EmiloZ's Avatar Flying Piggy Back
    CoreCoins Purchaser
    Reputation
    538
    Join Date
    Jun 2007
    Posts
    1,393
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice guide, +Cookie
    Why fill up a signature?

  3. #3
    iradiation's Avatar Banned
    Reputation
    88
    Join Date
    Mar 2008
    Posts
    625
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cool and all but autoit won't get you far. +rep anyways cuz of the time. it would be could if you taught someone how to make a bot that can follow profiles or something.

  4. #4
    Zeltraz500's Avatar Banned
    Reputation
    11
    Join Date
    Jul 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks the profile thing is hard though

  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)
    Both PiroX (I THINK!) and Flo's bots are AutoIt based

    Anywho, wrong section.


  6. #6
    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)
    OK. Now we can move. Now we just need target If we use Tab it will just attack everything..

  7. #7
    Tropem's Avatar Member
    Reputation
    26
    Join Date
    Jun 2007
    Posts
    179
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice Guide!
    +rep 2!

  8. #8
    Hackingmac's Avatar Banned
    Reputation
    53
    Join Date
    Aug 2008
    Posts
    202
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    better with some glider or something with gy point and rest and stuff

  9. #9
    popster's Avatar Member
    Reputation
    4
    Join Date
    Aug 2008
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats pretty cool, nice tutorial

  10. #10
    ferocity's Avatar Member
    Reputation
    13
    Join Date
    Sep 2008
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    And please tell me that auto it can read memory or has ability to recognize images, otherwise this is completely useless.

    Unless you want your bot to walk forward endlessly, not knowing where he is going, and not knowing what to do.

  11. #11
    pyre's Avatar Active Member
    Reputation
    48
    Join Date
    Jun 2007
    Posts
    157
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ferocity View Post
    And please tell me that auto it can read memory or has ability to recognize images, otherwise this is completely useless.

    Unless you want your bot to walk forward endlessly, not knowing where he is going, and not knowing what to do.
    There are ways to read autoit colors and such.

    Using
    $mouse = MouseGetPos ( [dimension] )

    PixelGetColor ( $mouse )

    you can get a user inputted color for fishbots and such.

    PixelSearch ( left, top, right, bottom, color [, shade-variation] [, step]] )

    add along with

    MouseClick ( "button" [, x, y [, clicks [, speed ]]] )

    and you have a simple fish bot.

Similar Threads

  1. How-to Make Your Own Basic AntiAFK Bot With AutoIt
    By Toxik the Spammer in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 05-23-2008, 12:39 PM
  2. How to make your own items!!!
    By Ben090 in forum WoW EMU Guides & Tutorials
    Replies: 1
    Last Post: 09-26-2007, 01:08 AM
  3. WoW Emu Section (How to Make Your Own WoW Server)
    By Errage in forum Suggestions
    Replies: 8
    Last Post: 08-21-2007, 11:53 PM
  4. [Easy] How to Make Your Own WoW Forum Avatar!
    By Roflcopterzzz in forum Art & Graphic Design
    Replies: 21
    Last Post: 05-28-2007, 10:09 AM
  5. Make your own Bots for Wow/EQ2
    By HunterHero in forum World of Warcraft Bots and Programs
    Replies: 0
    Last Post: 10-19-2006, 10:05 AM
All times are GMT -5. The time now is 10:02 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