Open Souce Project for WoW 1.12.1 menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    daCoder's Avatar Sergeant
    Reputation
    22
    Join Date
    Sep 2012
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Open Souce Project for WoW 1.12.1

    Hello OC Community,

    I started a project working on WoW 1.12.1.
    At the moment it is at a beginning state and i am still working on it.

    Currently implemented are following functions.

    * Objectlist enumeration
    * Teleporting to object (doubleclick on listitem)
    * Speedhack
    * No Fall Damage
    * Wallclimb

    The core work was to get the objects with their attributes like name, health, ...

    I didn't implement all public hacks from the Info Dump Thread for 1.12.1 ([WoW] 1.12.1.5875 Info Dump Thread). I am sharing this in an early state for two reasons.

    * Code is not much is easy understandable, maybe something for newcomers to get into this stuff.
    * Looking for others to work together on this project

    Even if you don't want to code by yourself, you can contribute by telling me your ideas. Since this in an early stage, you can tell me your feature requests.


    A screenshot:


    An example how to work with this code base. The Reader gives you an object list, where you can iterate over. This example is teleporting to filtered herbs in the list, for fast gathering.

    Code:
     private void btnExample1_Click(object sender, EventArgs e)
            {
                GameReader WoW = Globals.WoWGame;
                ListWoWObjects list = WoW.getAllObjects();
                WowObject CurrentObject;
                // read the object manager from first object to last.
                for (int i = 0; i < list.Count; i++)
                {
                    CurrentObject = list.Get(i);
                    switch (CurrentObject.Type)
                    {
                        case (short)Constants.ObjType.OT_GAMEOBJ:
                            if (CurrentObject.GameObjectType == (uint)Constants.GameObjectType.Chest)
                            {
                                switch (CurrentObject.Name)
                                {
                                    case "Friedensblume":
                                    case "Silberblatt":
                                        teleportTo(CurrentObject.XPos, CurrentObject.YPos, CurrentObject.ZPos);
                                        return;
                                    default:
                                        break;
                                }
                            }
                            break;
                    }
                }
            }

    Download: OpenHack.zip
    Source: OpenHackSrc.zip


    -daCoder
    My Youtube Vidoes: https://www.youtube.com/user/daCoderVids
    OpenHack: https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/384086-open-souce-project-wow-1-12-1-a.html

    Open Souce Project for WoW 1.12.1
  2. #2
    Corthezz's Avatar Elite User Authenticator enabled
    Reputation
    386
    Join Date
    Nov 2011
    Posts
    325
    Thanks G/R
    183/98
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks a lot for sharing the source. Finally I found out where I did the mistake with my object manager and can continue working on my bot! +Rep for you.

  3. #3
    daCoder's Avatar Sergeant
    Reputation
    22
    Join Date
    Sep 2012
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Your welcome.
    If you are working on a bot, do you have any idea how to interact with the target? Would be great to know how to collect the herbs. In Cata there was a key for "interact with mouseover", but without this key i have no idea atm.
    My Youtube Vidoes: https://www.youtube.com/user/daCoderVids
    OpenHack: https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/384086-open-souce-project-wow-1-12-1-a.html

  4. #4
    Corthezz's Avatar Elite User Authenticator enabled
    Reputation
    386
    Join Date
    Nov 2011
    Posts
    325
    Thanks G/R
    183/98
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I wrote you a little PM. Please answer :>

  5. #5
    mangebjuder17's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmmmm im trying to use this hack but i keep getting an error saying something on the lines of: Unhandled exception occured in your application. Any help? please.

  6. #6
    Strathrename's Avatar Banned
    Reputation
    209
    Join Date
    May 2012
    Posts
    388
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this world on emerald-dream?

  7. #7
    daCoder's Avatar Sergeant
    Reputation
    22
    Join Date
    Sep 2012
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mangebjuder17 View Post
    Hmmmm im trying to use this hack but i keep getting an error saying something on the lines of: Unhandled exception occured in your application. Any help? please.
    1. Are you using Wow x86 (32bit) ?
    2. Did you start it with Administrator rights?

    There should be a failure report, can you post this?
    My Youtube Vidoes: https://www.youtube.com/user/daCoderVids
    OpenHack: https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/384086-open-souce-project-wow-1-12-1-a.html

  8. #8
    why2004007's Avatar Member Authenticator enabled
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I got the error code bellow:
    System.Exception: ReadUInt failed.
    at Magic.SMemory.ReadUInt(IntPtr hProcess, UInt32 dwAddress, Boolean bReverse)
    at Magic.BlackMagic.ReadUInt(UInt32 dwAddress, Boolean bReverse)
    at Magic.BlackMagic.ReadUInt(UInt32 dwAddress)
    at OpenHack.GameReader.LoadAddresses()
    at OpenHack.frmMain.init()
    at OpenHack.frmMain.btnInitHacks_Click(Object sender, EventArgs e)
    at System.Windows.Forms.Control.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
    at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.ButtonBase.WndProc(Message& m)
    at System.Windows.Forms.Button.WndProc(Message& m)
    at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
    at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam

    I wonder that if I have to install some support libs like vc++ 2012 etc.
    btw I've already have vc++ 2012 and .net Framework 4.5 installed

  9. #9
    daCoder's Avatar Sergeant
    Reputation
    22
    Join Date
    Sep 2012
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you select the PID from the Dropdownlist before pressing the "init hacks" button? I didn't implement this kind of checks, since the whole release was meant as a proof of concept.

    The binaries are compiled with .Net 4.0.
    My Youtube Vidoes: https://www.youtube.com/user/daCoderVids
    OpenHack: https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/384086-open-souce-project-wow-1-12-1-a.html

  10. #10
    ban19's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    See the end of this message for details on invoking 
    just-in-time (JIT) debugging instead of this dialog box.
    
    ************** Exception Text **************
    System.Exception: ReadUInt failed.
       at Magic.SMemory.ReadUInt(IntPtr hProcess, UInt32 dwAddress, Boolean bReverse)
       at Magic.BlackMagic.ReadUInt(UInt32 dwAddress, Boolean bReverse)
       at Magic.BlackMagic.ReadUInt(UInt32 dwAddress)
       at OpenHack.GameReader.LoadAddresses()
       at OpenHack.frmMain.init()
       at OpenHack.frmMain.btnInitHacks_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    
    
    ************** Loaded Assemblies **************
    mscorlib
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.269 (RTMGDR.030319-2600)
        CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
    ----------------------------------------
    OpenHack
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Users/Nostromo/Desktop/OpenHack/OpenHack.exe
    ----------------------------------------
    System.Windows.Forms
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.278 built by: RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    ----------------------------------------
    System.Drawing
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.282 built by: RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    ----------------------------------------
    System
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.269 built by: RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    ----------------------------------------
    BlackMagic
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Users/Nostromo/Desktop/OpenHack/BlackMagic.DLL
    ----------------------------------------
    fasmdll_managed
        Assembly Version: 1.0.4634.23840
        Win32 Version: 
        CodeBase: file:///C:/Users/Nostromo/Desktop/OpenHack/fasmdll_managed.DLL
    ----------------------------------------
    
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    
    For example:
    
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    -WOW 32bit
    -NET 4.0 (to make sure i've reinstalled)
    -Admin rights
    -Selected PID Before injecting
    Still dont work

  11. #11
    daCoder's Avatar Sergeant
    Reputation
    22
    Join Date
    Sep 2012
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am kind of suprised, this shouldn't happen.

    I've updated the binary, can you try it again?
    My Youtube Vidoes: https://www.youtube.com/user/daCoderVids
    OpenHack: https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/384086-open-souce-project-wow-1-12-1-a.html

  12. #12
    why2004007's Avatar Member Authenticator enabled
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Today I reviewed your thread and found that 1.12.1 is the version of wow not the version of hack.
    So I used this hack on my 5.05 client...I think that's why it's not working.

  13. #13
    WizKhalifa610's Avatar Member
    Reputation
    3
    Join Date
    Oct 2012
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Few questions

    1. Does hack currently work?
    2. Does speed hack and teleport hack work? (Cause wowplus teleport got fixed)
    3. Is this hack detectable?

  14. #14
    Corthezz's Avatar Elite User Authenticator enabled
    Reputation
    386
    Join Date
    Nov 2011
    Posts
    325
    Thanks G/R
    183/98
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Srsly are some people just retarded or never learned to read?
    for WoW 1.12.1
    I mean for ****s sake you could atleast read the thread title.

  15. #15
    mike321's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am running wow 1.12.1 but it says my version is not supported. It also says "Unhandled exception has occurred in your application" when I try to select the number from the drop down list.

    Please Help!

Page 1 of 2 12 LastLast

Similar Threads

  1. [Project] Exploration Tutorial for WoW
    By WizardTrokair in forum World of Warcraft Exploration
    Replies: 115
    Last Post: 02-16-2018, 05:00 PM
  2. Replies: 0
    Last Post: 10-22-2015, 08:54 AM
  3. [Release] Open Souce Project for WoW 1.12.1
    By daCoder in forum WoW EMU Programs
    Replies: 0
    Last Post: 10-30-2012, 03:52 AM
  4. [Selling] WTT For Swtor Rift Or Final Fantasy OR OTHE MMORPG OR SELLING NOT OPEN FOR WOW TRADE!
    By Barrymayne666 in forum Star Wars: The Old Republic Buy Sell Trade
    Replies: 1
    Last Post: 03-13-2012, 01:45 AM
  5. Opening Ports Required for WOW server
    By erobins in forum WoW EMU Guides & Tutorials
    Replies: 6
    Last Post: 10-21-2008, 06:52 PM
All times are GMT -5. The time now is 11:51 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