WoW! thing source code menu

User Tag List

Results 1 to 14 of 14
  1. #1
    Relz's Avatar Feed the trolls
    Reputation
    429
    Join Date
    May 2006
    Posts
    2,124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    WoW! thing source code

    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
    ; ----------------------------------------------------------------------------
    ;
    ; 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
    ; ----------------------------------------------------------------------------
    ;
    ; 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 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
    Last edited by Relz; 04-29-2007 at 07:32 PM.
    "Step right up and shake hands with the devil"

    WoW! thing source code
  2. #2
    Newbs_r_us's Avatar Active Member
    Reputation
    108
    Join Date
    Jan 2007
    Posts
    314
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    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.

  3. #3
    Relz's Avatar Feed the trolls
    Reputation
    429
    Join Date
    May 2006
    Posts
    2,124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    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.
    "Step right up and shake hands with the devil"

  4. #4
    Newbs_r_us's Avatar Active Member
    Reputation
    108
    Join Date
    Jan 2007
    Posts
    314
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    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.

  5. #5
    Relz's Avatar Feed the trolls
    Reputation
    429
    Join Date
    May 2006
    Posts
    2,124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    its a really easy and fun language to learn, and if you get good you can make some amazing stuff.
    "Step right up and shake hands with the devil"

  6. #6
    Nugma's Avatar Field Marshal
    Reputation
    122
    Join Date
    Aug 2006
    Posts
    1,290
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    O.o Awesome Relz!

  7. #7
    Shattered's Avatar Member
    Reputation
    89
    Join Date
    Sep 2006
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    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

  8. #8
    Relz's Avatar Feed the trolls
    Reputation
    429
    Join Date
    May 2006
    Posts
    2,124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    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.
    "Step right up and shake hands with the devil"

  9. #9
    mastermick's Avatar Member
    Reputation
    3
    Join Date
    May 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    how does this work?

  10. #10
    Relz's Avatar Feed the trolls
    Reputation
    429
    Join Date
    May 2006
    Posts
    2,124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    its auto-it source code. you need to install auto-it and put this into a script file.
    "Step right up and shake hands with the devil"

  11. #11
    [SpNiz]'s Avatar Contributor
    Reputation
    130
    Join Date
    Jan 2007
    Posts
    479
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    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 07:03 AM.



  12. #12
    Sparkkrieg's Avatar Member
    Reputation
    4
    Join Date
    Apr 2007
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    can i ask what this is for please? dont reply cus i neva read them, but e-mail me at [email protected]
    Never argue with an idiot, they'll bring you down to their level and beat you with experience!

  13. #13
    warsheep's Avatar Contributor
    Reputation
    184
    Join Date
    Sep 2006
    Posts
    1,216
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW! thing source code

    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 03:10 PM.

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

    Re: WoW! thing source code

    new source!
    huzzah

Similar Threads

  1. [Hack] / [Bot] 1.12.1 WoW Bot Source Code
    By Corthezz in forum WoW Memory Editing
    Replies: 51
    Last Post: 02-04-2017, 01:12 PM
  2. [Source Code] Wow Radar Application
    By jbrauman in forum World of Warcraft Bots and Programs
    Replies: 84
    Last Post: 11-26-2011, 07:48 AM
  3. [Leaked] WoW Decompiled Source Code (pastebin)
    By jmp478 in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 04-16-2010, 04:28 PM
  4. [RELEASE] Core of Time WoW Emulator Source Code
    By CoolManBob in forum World of Warcraft Emulator Servers
    Replies: 21
    Last Post: 02-04-2008, 11:22 PM
  5. WoW armory source code
    By seizure507 in forum WoW Scam Prevention
    Replies: 23
    Last Post: 01-04-2008, 03:00 AM
All times are GMT -5. The time now is 11:21 PM. 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