beginers guide to learn to program bots step by step with auto it -
04-18-2007
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 [Only registered and activated users can see links. ]
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 [Only registered and activated users can see links. ]
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
>>>[Only registered and activated users can see links. ]<<< >>>[Only registered and activated users can see links. ]<<< >>>[Only registered and activated users can see links. ]<<< >>>[Only registered and activated users can see links. ]<<< >>>[Only registered and activated users can see links. ]<<< >>>[Only registered and activated users can see links. ]<<< >>>lesson 7 & 8 below<<<
-----)(Please leave the copyright text intact)(----- This post is copyright by the user posting it and [Only registered and activated users can see links. ], 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 [Only registered and activated users can see links. ] , 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 10:24 AM..
Reason: Auto-merged Doublepost
Re: beginers guide to learn to program bots step by step with auto it -
04-18-2007
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... [Only registered and activated users can see links. ]
Re: beginers guide to learn to program bots step by step with auto it
Re: beginers guide to learn to program bots step by step with auto it -
04-18-2007
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
Re: beginers guide to learn to program bots step by step with auto it
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 3
Reputation: 1
Posts: 34
Join Date: Dec 2006
Re: beginers guide to learn to program bots step by step with auto it -
04-19-2007
Quote:
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
Re: beginers guide to learn to program bots step by step with auto it
Re: beginers guide to learn to program bots step by step with auto it -
04-19-2007
Quote:
Originally Posted by SirCantrel
myspace doesnt count
not my space i made one in flash and one in html they are... [Only registered and activated users can see links. ] and the amazing flash one is [Only registered and activated users can see links. ]
i wana see you make one in flash better then that
ok this is for learning bots plz stop braging about websites
how do u edit your signature???
Last edited by orangegold; 04-19-2007 at 08:50 PM..
Re: beginers guide to learn to program bots step by step with auto it
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 3
Reputation: 1
Posts: 34
Join Date: Dec 2006
Re: beginers guide to learn to program bots step by step with auto it -
04-19-2007
Quote:
Originally Posted by orangegold
not my space i made one in flash and one in html they are... [Only registered and activated users can see links. ] and the amazing flash one is [Only registered and activated users can see links. ]
i wana see you make one in flash better then that
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.
Re: beginers guide to learn to program bots step by step with auto it
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
Posts: 20
Join Date: Apr 2007
Re: beginers guide to learn to program bots step by step with auto it -
04-19-2007
Quote:
Originally Posted by orangegold
not my space i made one in flash and one in html they are... [Only registered and activated users can see links. ] and the amazing flash one is [Only registered and activated users can see links. ]
i wana see you make one in flash better then that
[Only registered and activated users can see links. ] [Only registered and activated users can see links. ] [Only registered and activated users can see links. ]