MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides  
Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > World of Warcraft > Bots and Programs
Reload this Page [GUIDE] Create your own little bot. +ADDED ANTIAFK
Bots and Programs Botting and Hacking programs for World of Warcraft.
[NO QUESTIONS HERE]

Reply
 
LinkBack Thread Tools
[GUIDE] Create your own little bot. +ADDED ANTIAFK
(#1)
Old
Zeroi9 is Offline
Banned
Rep Power: 0
Reputation: 291
Zeroi9 is a jewel in the roughZeroi9 is a jewel in the roughZeroi9 is a jewel in the rough
 
Posts: 651
Join Date: Aug 2008
Location: MM0wN3d
[GUIDE] Create your own little bot. +ADDED ANTIAFK - 10-18-2008

Hello guys! I've been into coding bots and programs for some weeks, and now I'm working on an BG bot.


In this guide you will, shortly, learn how to create your own BOT.
You can use it for WoW, or any other games.
Download AutoIt v3 : [Only registered and activated users can see links. ]
Install it, then right click your desktop, hold mouse over "New" and New AutoIT Document. Now you get an new file on your desktop, rightclick it and press " Edit Script "

Now we will start code.
To start the bot in test mode, press F5!


Ok, in the top now, you enter this code :
Code:
MsgBox(0, "Titel of msgbox", "MSG BOX TEXT")
The 0 is the sort of the window, you can try 1 - 2 - 3 etc and see wich you like most. The other stuff I hope you can fix yourself. (its titel and msgbox text ^^) --- When you press F5 to test the bot, a msgbox will appear and you need to press like OK or which sort of window you picked and then the bot starts, so be sure to have wow or maybe an txt file to see what the bot press. ---
Now you go down to an new line.
Here you do this code.

Code:
sleep("15000")
send("{space}")
This will paus the bot for 15 secs (1000 = 1 sec)
and then press space.
so it can look like this :

Code:
sleep("15000")
send("{space}")
sleep("105")
Send("w") 
sleep("600")
Send("e")
send("{space}")
sleep"("30")
But you add more to make it do other stuff, I mean it can do like "send("4")" and you can have mount at button 4, or maybe "send("2")" and you got an dot etc.
I'll write an more advanced guide in a few days when my bot is done!
As you see i got {space}, its becuse { means its a button press, if you just type ("space") then it will press s,p,a,c,e.
Uhm all {buttons} is here :

HOPE You got any use for this guide! You maybe can learn more and more and in a while create your own l33t bot?! :-)

ADDED - To make an anti afk thingie, you can use this code. Remember when you copy the code, to remove all my tips. (tips is after the -)
Code:
$Msg = MsgBox(1, "TITEL", "Msg.") - First an titel of your msgbox, then an msg. the 1 is the type of the msgbox. USE 1 !!!!
If $Msg = 2 Then - This is if the user press Cancel instead of OK, the bots exits.
	UserEnd() - Code to end bot.
EndIf
HotKeySet("{Pause}", "UserEnd")  - an Hotkey to stop the bot manually. u see ("{PICK BUTTON HERE}") to change the button to pause.
Func UserEnd() - funciton
Exit - exits
EndFunc - end function
- NOTICE ---- You can type anything else instead of World of Warcraft. ---
- NOTICE ---- THIS IS AN ALONE CODE, IF YOU DO THIS ANTI AFK BOT, SKIP THE CODES ABOVE!! ---
WinSetState("World of Warcraft", "", @SW_MAXIMIZE) - This will maximize WoW.
ControlSend("World of Warcraft", "", "", "/join thisislolepichaha") - Here is an channel it joins, bot will join it and type the msg under here.
ControlSend("World of Warcraft", "", "", "{ENTER}") - Presses ENTER.
While 1 - here is the start.
ControlSend("World of Warcraft", "", "", "This is an simple NOT AFK thing.") - This is what the bot should say.
ControlSend("World of Warcraft", "", "", "{ENTER}") - Presses ENTER and sends the msg.
Sleep(25000) - "sleeps" before starting all over again ^^, 1000 = 1 sec, 10000 = 10 sec.
WEnd - Here is the end.¨
feel free to pm me with questions! or write here!



ADDED - A BOT WITH WINDOWED MODE.
Code:
While 1 - here is the start.
ControlSend("World of Warcraft", "", "", "send("w") ; This will press w.
ControlSend("World of Warcraft", "", "", "{w down}") ; This will hold w down until command w up.
Sleep(1500) ; sleeps 1.5 sec. and then WEnd command makes it restart all over (while 1 to wend wil restart until stopped)
WEnd - Here is the end. And restarts.



Ps. plx no more useless bots now, no more AntiAfk that just press Space. if you use this guide, you can make him press w,w,w,w,then maybe button 4 so he mounts etc. dots and {tab}s..
ENJOY!
PM me if you got question.
Code:
here :
Send("{TAB}")  	Navigate to next control (button, checkbox, etc)
Send("+{TAB}") 	Navigate to previous control.
Send("^{TAB}") 	Navigate to next WindowTab (on a Tabbed dialog window)
Send("^+{TAB}") 	Navigate to previous WindowTab.
Send("{SPACE}") 	Can be used to toggle a checkbox or click a button.
Send("{+}") 	Usually checks a checkbox (if it's a "real" checkbox.)
Send("{-}") 	Usually unchecks a checkbox.
Send("{NumPadMult}") 	Recursively expands folders in a SysTreeView32.


Use Alt-key combos to access menu items.  Also, open Notepad and try the following:

Send("!f") 	Send Alt+f, the access key for Notepad's file menu. Try other letters!
Send("{DOWN}") 	Move down a menu.
Send("{UP}") 	Move up a menu.
Send("{LEFT}") 	Move leftward to new menu or expand a submenu.
Send("{RIGHT}") 	Move rightward to new menu or collapse a submenu.





To send the ASCII value A (same as pressing ALT+065 on the numeric keypad)

Send("{ASC 065}")


To send UNICODE characters enter the character code, for example this sends a Chinese character

Send("{ASC 2709}")


Single keys can also be repeated, e.g.

Send("{DEL 4}") ;Presses the DEL key 4 times
Send("{S 30}") ;Sends 30 'S' characters
Send("+{TAB 4}") ;Presses SHIFT+TAB 4 times


To hold a key down (generally only useful for games)

Send("{a down}") ;Holds the A key down
Send("{a up}") ;Releases the A key


If you with to use a variable for the count, try

$n = 4
Send("+{TAB " & $n & "}")


If you wish to send the ASCII value A four times, then try

$x = Chr(65)
Send("{" & $x & " 4}")


{!}  	!
{#} 	#
{+} 	+
{^} 	^
{{} 	{
{}} 	}
{SPACE} 	SPACE
{ENTER} 	ENTER key on the main keyboard

{ALT} 	ALT
{BACKSPACE} or {BS} 	BACKSPACE
{DELETE} or {DEL} 	DELETE
{UP} 	Up arrow
{DOWN} 	Down arrow
{LEFT} 	Left arrow
{RIGHT} 	Right arrow
{HOME} 	HOME
{END} 	END
{ESCAPE} or {ESC} 	ESCAPE
{INSERT} or {INS} 	INS
{PGUP} 	PGUP
{PGDN} 	PGDN
{F1} - {F12} 	Function keys
{TAB} 	TAB
{PRINTSCREEN} 	PRINTSCR
{LWIN} 	Left Windows key
{RWIN} 	Right Windows key
{NUMLOCK} 	NUMLOCK
{BREAK} 	for Ctrl+Break processing
{PAUSE} 	PAUSE
{CAPSLOCK} 	CAPSLOCK
{NUMPAD0} - {NUMPAD9} 	Numpad digits
{NUMPADMULT} 	Numpad Multiply
{NUMPADADD} 	Numpad Add
{NUMPADSUB} 	Numpad Subtract
{NUMPADDIV} 	Numpad Divide
{NUMPADDOT} 	Numpad period
{NUMPADENTER} 	Enter key on the numpad
{APPSKEY} 	Windows App key
{LALT} 	Left ALT key
{RALT} 	Right ALT key
{LCTRL} 	Left CTRL key
{RCTRL} 	Right CTRL key
{LSHIFT} 	Left Shift key
{RSHIFT} 	Right Shift key
{SLEEP} 	Computer SLEEP key
{ALTDOWN} 	Holds the ALT key down until {ALTUP} is sent
{SHIFTDOWN} 	Holds the SHIFT key down until {SHIFTUP} is sent
{CTRLDOWN} 	Holds the CTRL key down until {CTRLUP} is sent
{LWINDOWN} 	Holds the left Windows key down until {LWINUP} is sent
{RWINDOWN} 	Holds the right Windows key down until {RWINUP} is sent
{ASC nnnn} 	Send the ALT+nnnn key combination
  	 
{BROWSER_BACK} 	2000/XP Only: Select the browser "back" button
{BROWSER_FORWARD} 	2000/XP Only: Select the browser "forward" button
{BROWSER_REFRESH} 	2000/XP Only: Select the browser "refresh" button
{BROWSER_STOP} 	2000/XP Only: Select the browser "stop" button
{BROWSER_SEARCH} 	2000/XP Only: Select the browser "search" button
{BROWSER_FAVORITES} 	2000/XP Only: Select the browser "favorites" button
{BROWSER_HOME} 	2000/XP Only: Launch the browser and go to the home page
{VOLUME_MUTE} 	2000/XP Only: Mute the volume
{VOLUME_DOWN} 	2000/XP Only: Reduce the volume
{VOLUME_UP} 	2000/XP Only: Increase the volume
{MEDIA_NEXT} 	2000/XP Only: Select next track in media player
{MEDIA_PREV} 	2000/XP Only: Select previous track in media player
{MEDIA_STOP} 	2000/XP Only: Stop media player
{MEDIA_PLAY_PAUSE} 	2000/XP Only: Play/pause media player
{LAUNCH_MAIL} 	2000/XP Only: Launch the email application
{LAUNCH_MEDIA} 	2000/XP Only: Launch media player
{LAUNCH_APP1} 	2000/XP Only: Launch user app1
{LAUNCH_APP2} 	2000/XP Only: Launch user app2

Last edited by Zeroi9; 10-20-2008 at 04:07 PM.. Reason: Adding!2
Reply With Quote

Donate to remove ads.
(#2)
Old
Cern is Offline
Banned
Rep Power: 0
Reputation: 606
Cern is a name known to allCern is a name known to allCern is a name known to allCern is a name known to allCern is a name known to allCern is a name known to all
 
Posts: 883
Join Date: Feb 2007
Location: www.dirae.net
10-18-2008

Very nice guide! I will rep you if I can!
Reply With Quote
(#3)
Old
shadowbladex's Avatar
shadowbladex is Offline
Contributor
Rep Power: 2
Reputation: 138
shadowbladex will become famous soon enoughshadowbladex will become famous soon enough
 
Posts: 937
Join Date: Apr 2007
Location: ๏̯๏
10-18-2008

Maybe helpful for beginners. But nothing you cant find in the help file.


Reply With Quote
(#4)
Old
Zeroi9 is Offline
Banned
Rep Power: 0
Reputation: 291
Zeroi9 is a jewel in the roughZeroi9 is a jewel in the roughZeroi9 is a jewel in the rough
 
Posts: 651
Join Date: Aug 2008
Location: MM0wN3d
10-18-2008

Quote:
Originally Posted by Cern View Post
Very nice guide! I will rep you if I can!
Added stuff.

Last edited by Zeroi9; 10-22-2008 at 03:00 AM..
Reply With Quote
(#5)
Old
Zeroi9 is Offline
Banned
Rep Power: 0
Reputation: 291
Zeroi9 is a jewel in the roughZeroi9 is a jewel in the roughZeroi9 is a jewel in the rough
 
Posts: 651
Join Date: Aug 2008
Location: MM0wN3d
10-18-2008

C'mon guys. 70 views, 2 comments? :-/
Reply With Quote
(#6)
Old
Jarrah is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 0
Reputation: 1
Jarrah is an unknown quantity at this point
 
Posts: 3
Join Date: Dec 2007
10-18-2008

is there any commands for target the BG guy and join BG and then run the key's?... and how do the program understand that the bg has ended so it stops?..
Reply With Quote
(#7)
Old
Zeroi9 is Offline
Banned
Rep Power: 0
Reputation: 291
Zeroi9 is a jewel in the roughZeroi9 is a jewel in the roughZeroi9 is a jewel in the rough
 
Posts: 651
Join Date: Aug 2008
Location: MM0wN3d
10-18-2008

Quote:
Originally Posted by Jarrah View Post
is there any commands for target the BG guy and join BG and then run the key's?... and how do the program understand that the bg has ended so it stops?..

type
send("{enter}")
send("/target BGguyname")
send("{enter}")
thendownload addon sspvp2
Reply With Quote
(#8)
Old
INS4N3K1LL's Avatar
INS4N3K1LL is Offline
Master Sergeant
Rep Power: 1
Reputation: 13
INS4N3K1LL is on a distinguished road
 
Posts: 102
Join Date: Feb 2008
Location: Orgrimmar
10-18-2008

Great!
Very usefull, I got it working now, tbh you should make a guide that can re-join an bg to. But anyway, ,+REP frmo me,
Reply With Quote
(#9)
Old
Jarrah is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 0
Reputation: 1
Jarrah is an unknown quantity at this point
 
Posts: 3
Join Date: Dec 2007
10-18-2008

Quote:
Originally Posted by Zeroi9 View Post
type
send("{enter}")
send("/target BGguyname")
send("{enter}")
thendownload addon sspvp2

Okey I see thank you, +REP from me!..and more to come if you answere;

but how do my script / program / bot understand that my character isn't in AV or WSG or any BG anymore?.. how do it understand that it shall /target BGguyname and so on?... and how do I do to repeat alots of lines? since you never know how long a AV will last...
Reply With Quote
(#10)
Old
Thidan's Avatar
Thidan is Offline
Contributor
Rep Power: 2
Reputation: 106
Thidan will become famous soon enoughThidan will become famous soon enough
 
Posts: 456
Join Date: Jan 2007
Location: Wherever BFMV is.
10-18-2008

Oh...My...GOD!
You find even more details in the help file, c'mon!
And the msgbox flag, dude, you don't "try" different numbers, you look them up in the helpfile.
And where's the While? I see no While. Or Do or For.


[img][/img]
◑ ◔
╔═╗
▒▒▒▓▓▓▓▓▓▓ LAZEEEEER!
╚═╝
Reply With Quote
(#11)
Old
Sylcai's Avatar
Sylcai is Offline
Knight-Lieutenant
Rep Power: 2
Reputation: 51
Sylcai will become famous soon enough
 
Posts: 275
Join Date: Oct 2007
Location: The Netherlands
10-18-2008

How is this not asking for rep?

A very disguised manner "I want the contributer rank, time to contribute!", and then saying "c'mon! 78 views, and just 2 comments?".

Aside from that, this is old, people previously have done such guides, yet, YOU are in the wrong section, as this is a GUIDE, not a bot.

Even though some people would think it should belong here, as it is a bot to create a guide.


However, it's with auto-it, so the bot can't really 'think'. And it's way to detectable.

Well, end of my rant, and yes, I had too. Go blame me for it!


Reply With Quote
(#12)
Old
Toxicity12's Avatar
Toxicity12 is Offline
Gears Of War
Rep Power: 3
Reputation: 384
Toxicity12 is just really niceToxicity12 is just really niceToxicity12 is just really niceToxicity12 is just really nice
 
Posts: 862
Join Date: Aug 2008
Location: Ireland.
10-18-2008

I couldn't care less if he was saying X views to X comments bcus Its completely true!!!! x2 great guide and introduced me to Autoit.




[Only registered and activated users can see links. ]
Reply With Quote
(#13)
Old
fry2bubba is Offline
Site Donator
Rep Power: 2
Reputation: 23
fry2bubba is on a distinguished road
 
Posts: 119
Join Date: Apr 2007
10-18-2008

Yeah saying "70 views and only 2 comments" I would not view it as asking for rep as when I posted my first guide release that was unreleased for the time i got tons of downloads on it and almost no thanks for me I could careless about rep it is more about making the people happy in my case and it kinda hurts when they download it and don't say anything thing as I can be paranoid and think that it didn't help at all.
Reply With Quote
(#14)
Old
mathias223's Avatar
mathias223 is Offline
Corporal
Rep Power: 1
Reputation: 6
mathias223 is an unknown quantity at this point
 
Posts: 21
Join Date: Sep 2008
10-18-2008

I'll +rep if you make a MAC bot :>
Reply With Quote
(#15)
Old
Zeroi9 is Offline
Banned
Rep Power: 0
Reputation: 291
Zeroi9 is a jewel in the roughZeroi9 is a jewel in the roughZeroi9 is a jewel in the rough
 
Posts: 651
Join Date: Aug 2008
Location: MM0wN3d
10-18-2008

Quote:
Originally Posted by fry2bubba View Post
Yeah saying "70 views and only 2 comments" I would not view it as asking for rep as when I posted my first guide release that was unreleased for the time i got tons of downloads on it and almost no thanks for me I could careless about rep it is more about making the people happy in my case and it kinda hurts when they download it and don't say anything thing as I can be paranoid and think that it didn't help at all.
Thanks for the words.

Guys, and you Thadin,
well I can put up a guide tonigt how to do repeats.
IT easy.



and you asking for bg thing, just make him like do /target bgmaster sometimes.
´Hope you like it....
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339