beginers guide to learn to program bots step by step with auto it menu

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 65
  1. #1
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    beginers guide to learn to program bots step by step with auto it

    EDIT : LESSON 8 IS NOW UP

    this post is now a forum to ask questions about autoit and to view my old teaching lessons and to post new scripts youve made and if you think i should add 1 more lesson on a script you made email me at [email protected]

    i hope youve enjoyed or well enjoy my lessons


    i will be showing you how to make bots in a program called auto it first i will start of with basics and code then we well get into anti afk bots and stuff more advanced but first you need to download autoit v3 after that you can program in it by opening a note pad and putting in the code then saving it as blablablayourtitlehere.au3

    download it at AutoIt v3 - Downloads

    note pad ::: right click on ur desktop then click new then click text document and it opens it; or go to start>all programs>acessories>notepad ; or press windows key and r then type in notepad and it will bring it up.

    if you have any questions just ask me and if you have a request for a code ask me

    >>>lesson 1 here<<< >>>lesson 2 here<<< >>>lesson 3 here<<< >>>lesson 4 here<<< >>>lesson 5 here<<< >>>lesson 6 here<<< >>>lesson 7 & 8 below<<<

    -----)(Please leave the copyright text intact)(-----
    This post is copyright by the user posting it and MMOwned.com - World of Warcraft Exploits,Hacks, Bots and Guides, where it was posted. You may not copy or reproduce this information on any other site without written permission from both the poster and MMOwned.com and free wow cheats, free world of warcraft cheats, free wow bugs and exploits , where the previous lessons are posted

    lesson 7 open url and wow simple code for auto opener helper? "real basic see lesson 6 for none basic codeing using everything wve learned except in lesson 7..."
    Code:
    send ("{LWIN} r"); does left windows key then r to open run then types in text slowly so it doesnt miss keys " see below"
    sleep(800)
    AutoItSetOption("SendKeyDownDelay", 50)
    send("http://www.mmowned.com/forums/bots-programs/17237-beginers-guide-learn-program-bots-step-step-auto.html {ENTER}") ;runs the url
    
    run("C:Program FilesWorld of WarcraftWoW.exe") ; runs wow this is on bottom because somtimes when its on top and runs this before internet it doesnt type in full url
     = MsgBox(4, "auto starter" , "auto opened, by click no to exit")  ;displays message
    If  = 7 Then ; 7 = no so when you click no it runs the code exit "below"
        MsgBox(0, "AutoIt", "OK.  Bye!")
        Exit ; exits "dont need idle"
    EndIf ; must have this to end the "if" earleir at the "if "
    
    ;this is basic cause im running out of ideas for scripts i just wanted to show you that you could open a url without run mozzilla if error they dont have mozilla run enternet explorer click type blah blah blah you can just type run then the url
    lesson 8: "updated auto login with input boxes"
    Code:
    ;lesson 8
    
    MsgBox(4096, "auto login bot", "Full version press f10 to start while wow login screen is up press f9 to close script", 10)
    HotKeySet("{F10}", "start")
    HotKeySet("{F9}", "exity")
    func start() ; starts
    MsgBox(0, "loging bot", "type username then pass")
     = InputBox("username:", "type your username below") ;  is a variable for an input box so later we can type send  and it will send what you put in the box... see !!!
     = InputBox("password", "type your password below") ; same here
    mousemove(363, 340)
    MouseClick("left")
    MouseClick("left")
    ;types your user name
    Send()                                           ;!!!      < here is what i was talking about
    sleep(500)
    ;moves down and click on pass enter section
    Mousemove(361, 399)
    MouseClick("left")
    MouseClick("left")
    send()                                           ;!!!    < and here
    sleep(1500)
    mousemove(373, 444)
    MouseClick("left")
    MouseClick("left")
    sleep(15000)
    mousemove(363, 577)
    MouseClick("left")
    MouseClick("left")
    sleep(20000)
    idle()
    EndFunc
    
    Func idle() ; idle, do nothing
    while 1
    Sleep(1000)
    WEnd
    EndFunc
    
    Func exity() ; exit
    Exit
    EndFunc
    
    ;important this idle must be at the end otherwise your script will close when you hit ok
    idle()
    help with typing scripts and moving scripts , wow doesnt know how to comprehend 100 keys at once 'cause autoit types that fast; to get it to type keys slower and hold them longer put this

    Code:
    AutoItSetOption("SendKeyDelay", 700) ; this number can be changed to make the pause between each key longer or shorter
    AutoItSetOption("SendKeyDownDelay", 50) ; this number can be changed to make the key hold longer or shorter
    Send("your text here ***"w = forward a = turn left etc"***")
    and remember if you ever need help on your own script ask me or press f1 while youre coding in the already saved .au3 files so when you edit it your editing it in there software then when you press F1 the help option well come up and you can find out there
    Last edited by orangegold; 10-14-2007 at 08:24 AM. Reason: Auto-merged Doublepost

    beginers guide to learn to program bots step by step with auto it
  2. #2
    wessdog911's Avatar Member
    Reputation
    2
    Join Date
    Feb 2007
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    can u plz make a link to the site i download it from?
    FTW=Fuck THE WORLD:wave:

  3. #3
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    ya sure sry i was eating just got back btw if u have any questions such as how to edit a saved .au3 script " just right click on the file and select edit script then resave" feel free to ask. the link is... http://www.autoitscript.com/autoit3/downloads.php

  4. #4
    someguy101's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    sorry just an idea, why would you have notepad open? its more likely to have like ieexplorer.exe on instead of notepad..... neway my 2 cents ttyl

  5. #5
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    you can do either way its just notepad is how i learned ty for ur sharing of this topic

  6. #6
    Soulkill's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    kol thnx man helps alot

  7. #7
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    np im ading more scripts soon

  8. #8
    wessdog911's Avatar Member
    Reputation
    2
    Join Date
    Feb 2007
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    i dont get this i don't see a notepad anywere just to clear this im 12 so put it in a way i can understand
    FTW=Fuck THE WORLD:wave:

  9. #9
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    lol im 12 to and i made 2 whole websites ok note pad right click on ur desktop then click new then text document and it opens it or go to start>all programs>acessories>notepad

  10. #10
    caffy's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    Originally Posted by wessdog911
    i dont get this i don't see a notepad anywere just to clear this im 12 so put it in a way i can understand
    You could try the following also

    press Windowskey + r to bring up the run dialogue and just type in
    notepad

    notepad should just start.

    HTH

  11. #11
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    that works to ill add it ty
    Last edited by orangegold; 10-14-2007 at 08:26 AM. Reason: Auto-merged Doublepost
    how do u edit your signature???

  12. #12
    SirCantrel's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    Originally Posted by orangegold
    lol im 12 to and i made 2 whole websites ok note pad right click on ur desktop then click new then text document and it opens it or go to start>all programs>acessories>notepad
    myspace doesnt count 6):

  13. #13
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    Originally Posted by SirCantrel
    myspace doesnt count 6):
    not my space i made one in flash and one in html they are... http://albert.teleinc.com and the amazing flash one is http://albert.teleinc.com/wow%20website%20final.swf

    i wana see you make one in flash better then that6):

    ok this is for learning bots plz stop braging about websites
    Last edited by orangegold; 04-19-2007 at 06:50 PM.
    how do u edit your signature???

  14. #14
    SirCantrel's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    Originally Posted by orangegold
    not my space i made one in flash and one in html they are... http://albert.teleinc.com and the amazing flash one is http://albert.teleinc.com/wow%20website%20final.swf

    i wana see you make one in flash better then that6):
    pretty sure at 12 i was hanging out with my friends... i don't think i was making websites and bragging about them >.< i'll end here.

  15. #15
    Underclocker's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: beginers guide to learn to program bots step by step with auto it

    Originally Posted by orangegold
    not my space i made one in flash and one in html they are... http://albert.teleinc.com and the amazing flash one is http://albert.teleinc.com/wow%20website%20final.swf

    i wana see you make one in flash better then that6):
    http://www.albinoblacksheep.com/games/escalade
    http://www.albinoblacksheep.com/flash/elbladeo
    http://www.albinoblacksheep.com/flash/36

    i win

Page 1 of 5 12345 LastLast

Similar Threads

  1. Looking to start learning a programming language, where to begin...
    By Itsrambo in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 02-18-2011, 04:15 PM
  2. [GUIDE] Make your scam program/hack look more legit with emulation
    By 2dgreengiant in forum WoW Scam Prevention
    Replies: 3
    Last Post: 07-25-2009, 06:36 AM
  3. What I've learned about Battleground Botting
    By ayadew in forum World of Warcraft Guides
    Replies: 2
    Last Post: 02-13-2008, 02:35 AM
  4. [Guide][Video]Learn how to walljump as a 1337
    By sonsen in forum World of Warcraft Guides
    Replies: 11
    Last Post: 02-12-2008, 08:53 PM
  5. Could some help me find a LEGAL grind/level program/bot or macro?
    By Priesst in forum World of Warcraft General
    Replies: 4
    Last Post: 08-09-2006, 01:35 PM
All times are GMT -5. The time now is 12:14 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