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 WoW! thing source code
Bots and Programs Botting and Hacking programs for World of Warcraft.
[NO QUESTIONS HERE]

Reply
 
LinkBack Thread Tools
WoW! thing source code
(#1)
Old
Relz's Avatar
Relz is Offline
Feed the trolls
Rep Power: 5
Reputation: 415
Relz is just really niceRelz is just really niceRelz is just really niceRelz is just really niceRelz is just really nice
 
Posts: 1,945
Join Date: May 2006
Location: U.S.A.
WoW! thing source code - 04-29-2007

well, I havent really been into updating WoW! Thing much, so I thought I would post the source code for it and a "special edition" of it. the special edition isnt much, it just doesnt have a window, is completely hotkey based and it can only open/close/hide/show WoW. In releasing this, all I ask is that if you make your own version to release (please do, I'd love to see what other people can do with auto-it) give credit where credit is due.

Normal WoW! Thing 2.0
Quote:
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author: Relz (thanks to Ziao for helping me clean up and fix the code)
;
; Script Function:
; WoW Thing! 2.0
;
; ----------------------------------------------------------------------------

; Script Start
#include <GUIConstants.au3>

#NoTrayIcon

;--------------------------opening section start---------------------------
;If no is clicked, WoW thing! closes.
$answer = MsgBox(4, "WoW Thing! v2.0", "WoW Thing! 2.0 ready to load! Continue?")
If $answer = 7 Then
MsgBox(0, "WoW Thing!", "WoW Thing! 2.0 Closing")
Exit
EndIf
;Shows a message reminding you of a hotkey
MsgBox(0,"WoW Thing! 2.0", "Remember, pressing Alt+w will allow you to rename the window for safety! Alt+H to hide window and Alt+S to show!")
;Makes the window
GUICreate("WoW Thing!", 500, 150)
;Changes window color
GUISetBkColor (0x000000)
;---------------------------------opening section end----------------------------
;----------------------Hotkey section Start -----------------------------
;Note: ! means press the Alt button
WinActivate("WoW Thing!", "")
HotKeySet("!w", "setWinTitle")
HotKeySet("!h", "hidegui")
HotKeySet("!s", "showgui")
;--------------------hotkey section end---------------------------------

;------------------WoW thing window show/hide/rename section start -------------
;Hiding W!T window
Func hidegui()
GUISetState (@SW_HIDE)
EndFunc
;Showing W!T window
Func showgui()
GUISetState (@SW_SHOW)
EndFunc
;Setting W!T window name
Func setWinTitle()
$input = InputBox("Set Window Name", "What do you want to name WoW Thing!'s window?")
$wincurtitle = WinGetTitle("WoW Thing!")
WinSetTitle($wincurtitle, "", $input)
EndFunc
;------------------WoW thing window show/hide/rename section end ---------------
;--------------------------other stuff start---------------------
GuiSetState()
GuiCtrlCreateLabel("Version 2", 398, 100)
GUICtrlSetColor(-1,0xFFFFFF)
GuiCtrlCreateLabel("Dashboard", 0, 0)
GUICtrlSetColor(-1,0xFFFFFF)
;--------------------------other stuff end-----------------------
;--------------------------button section start---------------------
;Buttons to press when W!T window is shown
$button1= GUICtrlCreateButton("Launch WoW", 5, 25, 100, 30)
$button2= GUICtrlCreateButton("Close WoW", 110, 25, 100, 30)
$button3= GUICtrlCreateButton("Show WoW", 215, 25, 100, 30)
$button4= GUICtrlCreateButton("Hide WoW", 5, 65, 100, 30)
$button5= GUICtrlCreateButton("Run mmowned.com", 110, 65,100 ,30)
$button6= GUICtrlCreateButton("Run WoW.com", 215, 65, 100, 30)
$button7= GUICtrlCreateButton("Run ThottBot", 5, 105, 100, 30)
;--------------------------button section end---------------------
;--------------Button action section start----------------
;Actions
While 1
$msg = GUIGetMsg()

Select
Case $msg = $button1
$input = InputBox("Password", "Type in your password to auto-login")
Run("C:\Program Files\World of Warcraft\WoW.exe")
WinWaitActive("World of Warcraft")
Send($input)
Sleep(500)
Send("{enter}")
Case $msg = $button2
WinActivate("World of Warcraft", "")
WinKill("World of Warcraft", "")
Case $msg = $button5
Send("#r")
WinWaitActive("Run")
Send("Http://MMOwned.com/{Enter}")
Case $msg = $button6
Send("#r")
WinWaitActive("Run")
Send("Http://worldofwarcraft.com/{Enter}")
Case $msg = $button7
Send("#r")
WinWaitActive("Run")
Send("Http://Thottbot.com/{Enter}")
Case $msg = $button3
Global $Show = 1
WinSetState("World of Warcraft", "", @SW_SHOW)
WinSetState("World of Warcraft", "", @SW_MAXIMIZE)
WinActivate("World of Warcraft", "")
Case $msg = $Button4
Global $Show = 0
WinSetState("World of Warcraft","", @SW_MINIMIZE)
WinSetState("World of Warcraft", "", @SW_HIDE)
EndSelect
If $msg = $GUI_EVENT_CLOSE Then MsgBox(0,"Credits", "Created by Relz of MMOwned.com for Chow")
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
WoW! Thing 2.0 SE
Quote:
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author: Relz
;
; Script Function:
; WoW Thing! 2.0(SE)
;
; ----------------------------------------------------------------------------

; Script Start

#include <GUIConstants.au3>

$answer = MsgBox(4, "WoW Thing! v2.0(SE)", "WoW Thing! 2.0(SE) ready to load! Continue?")
If $answer = 7 Then
MsgBox(0, "WoW Thing!", "WoW Thing! 2.0(SE) Closing")
Exit
EndIf
MsgBox(0,"WoW Thing! 2.0(SE)", "Welcome to WoW Thing! Special Edition.")
WinActivate("WoW Thing!", "")
;Pressing Escape ends this script!
HotKeySet("{ESC}", "Terminate")
; Press Alt then the letter listed to execute the function
HotKeySet("!w", "wowgame")
HotKeySet("!c", "closewow")
HotKeySet("!h", "hidewow")
HotKeySet("!s", "showwow")




;Functions
Func wowgame()
Run("C:\Program Files\World of Warcraft\WoW.exe")
EndFunc

Func closewow()
WinActivate("World of Warcraft")
winkill("World of Warcraft","")
EndFunc

Func hidewow()
WinSetState("World of Warcraft","", @SW_MINIMIZE)
WinSetState("World of Warcraft", "", @SW_HIDE)
EndFunc

Func showwow()
WinSetState("World of Warcraft","", @SW_SHOW)
WinSetState("World of Warcraft", "", @SW_MAXIMIZE)
EndFunc

Func Terminate()
Exit 0
EndFunc
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then MsgBox(0,"Credits", "Created by Relz of MMOwned.com")
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd



-----)(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



Last edited by Relz; 04-29-2007 at 09:32 PM..
Reply With Quote

Donate to remove ads.
Re: WoW! thing source code
(#2)
Old
Newbs_r_us's Avatar
Newbs_r_us is Offline
Contributor
Rep Power: 3
Reputation: 104
Newbs_r_us will become famous soon enoughNewbs_r_us will become famous soon enough
 
Posts: 313
Join Date: Jan 2007
Location: Behind you O.O
Re: WoW! thing source code - 04-29-2007

I had been wondering lately why there wasnt any updates. Anyways, thanx for the source share. I was getting rdy to start coding my own quasi-WoW! Thing.
Reply With Quote
Re: WoW! thing source code
(#3)
Old
Relz's Avatar
Relz is Offline
Feed the trolls
Rep Power: 5
Reputation: 415
Relz is just really niceRelz is just really niceRelz is just really niceRelz is just really niceRelz is just really nice
 
Posts: 1,945
Join Date: May 2006
Location: U.S.A.
Re: WoW! thing source code - 04-29-2007

heh, I've been lazy about doing projects lately. I might release another version later, if I ever get bored. hell, if it comes to it I might make one tommorow or the next day, but I cant guarentee anything so I thought I might as well let other people customize it to their needs. also, I figured it would be a good starting point for people who wanted to learn auto-it.


Reply With Quote
Re: WoW! thing source code
(#4)
Old
Newbs_r_us's Avatar
Newbs_r_us is Offline
Contributor
Rep Power: 3
Reputation: 104
Newbs_r_us will become famous soon enoughNewbs_r_us will become famous soon enough
 
Posts: 313
Join Date: Jan 2007
Location: Behind you O.O
Re: WoW! thing source code - 04-29-2007

Yeah, thats the boat im in. Started AutoIT like 2 weeks ago and so far have onyl doen a few thing, most complex up to a simple no afk bot.
Reply With Quote
Re: WoW! thing source code
(#5)
Old
Relz's Avatar
Relz is Offline
Feed the trolls
Rep Power: 5
Reputation: 415
Relz is just really niceRelz is just really niceRelz is just really niceRelz is just really niceRelz is just really nice
 
Posts: 1,945
Join Date: May 2006
Location: U.S.A.
Re: WoW! thing source code - 04-29-2007

its a really easy and fun language to learn, and if you get good you can make some amazing stuff.


Reply With Quote
Re: WoW! thing source code
(#6)
Old
Nugma's Avatar
Nugma is Offline
Contributor
Rep Power: 3
Reputation: 122
Nugma will become famous soon enoughNugma will become famous soon enough
 
Posts: 1,285
Join Date: Aug 2006
Location: Europe - Denmark
Re: WoW! thing source code - 04-30-2007

O.o Awesome Relz!


Reply With Quote
Re: WoW! thing source code
(#7)
Old
Shattered's Avatar
Shattered is Offline
Contributor
Rep Power: 3
Reputation: 89
Shattered will become famous soon enough
 
Posts: 199
Join Date: Sep 2006
Re: WoW! thing source code - 04-30-2007

Yay! You released it Relz! I see you half implemented my idea! But very nice. I think I will try to add to this . +rep for the source!


"If you're gonna amass data which can take many lives ... at least secure it."
-savec0re
Reply With Quote
Re: WoW! thing source code
(#8)
Old
Relz's Avatar
Relz is Offline
Feed the trolls
Rep Power: 5
Reputation: 415
Relz is just really niceRelz is just really niceRelz is just really niceRelz is just really niceRelz is just really nice
 
Posts: 1,945
Join Date: May 2006
Location: U.S.A.
Re: WoW! thing source code - 04-30-2007

Quote:
Originally Posted by Shattered
Yay! You released it Relz! I see you half implemented my idea! But very nice. I think I will try to add to this . +rep for the source!
Please do add to it
I'd love to see more security put into it (not that it really needs it, but I'd <3 it if someone found out how to change the process name randomly) and your own ideas. And, I just caught bronchitis, so I'm going to be home tommorow and maybe for the rest of the week so I might be adding my own stuff.


Reply With Quote
Re: WoW! thing source code
(#9)
Old
mastermick is Offline
Private
Rep Power: 2
Reputation: 3
mastermick is an unknown quantity at this point
 
Posts: 5
Join Date: May 2007
Re: WoW! thing source code - 05-02-2007

how does this work?
Reply With Quote
Re: WoW! thing source code
(#10)
Old
Relz's Avatar
Relz is Offline
Feed the trolls
Rep Power: 5
Reputation: 415
Relz is just really niceRelz is just really niceRelz is just really niceRelz is just really niceRelz is just really nice
 
Posts: 1,945
Join Date: May 2006
Location: U.S.A.
Re: WoW! thing source code - 05-02-2007

its auto-it source code. you need to install auto-it and put this into a script file.


Reply With Quote
Re: WoW! thing source code
(#11)
Old
[SpNiz]'s Avatar
[SpNiz] is Offline
Contributor
Rep Power: 3
Reputation: 130
[SpNiz] will become famous soon enough[SpNiz] will become famous soon enough
 
Posts: 465
Join Date: Jan 2007
Location: Sweden
Re: WoW! thing source code - 05-03-2007

Too bad the Auto-login doesn't work for me :/ Else it seems okej exept it wont go to any of the sites.





Last edited by [SpNiz]; 05-03-2007 at 09:03 AM..
Reply With Quote
Re: WoW! thing source code
(#12)
Old
Sparkkrieg's Avatar
Sparkkrieg is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 4
Sparkkrieg is an unknown quantity at this point
 
Posts: 32
Join Date: Apr 2007
Re: WoW! thing source code - 05-05-2007

can i ask what this is for please? dont reply cus i neva read them, but e-mail me at [Only registered and activated users can see links. ]
Reply With Quote
Re: WoW! thing source code
(#13)
Old
warsheep is Offline
Contributor
Rep Power: 4
Reputation: 184
warsheep has a spectacular aura aboutwarsheep has a spectacular aura about
 
Posts: 1,178
Join Date: Sep 2006
Re: WoW! thing source code - 05-05-2007

Just wonderin, this is kinda of topic, but what would be the line i had to write in Auto-it for it to press enter? Its all i need to my spam bot....
Edit: Ok, nvm, didn't think it was so easy that it was just to type enter under the send thingy... Nvm this post. And thanks for the open source, it actuly makes me understand something!

Last edited by warsheep; 05-05-2007 at 05:10 PM..
Reply With Quote
Re: WoW! thing source code
(#14)
Old
roam7 is Offline
Private
Rep Power: 2
Reputation: 1
roam7 is an unknown quantity at this point
 
Posts: 6
Join Date: May 2007
Re: WoW! thing source code - 05-15-2007

new source!
huzzah
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 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382