Help to Get  Mobstruct Signature menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    vampir26's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Help to Get Mobstruct Signature

    Hi
    Sorry, my english is not very good
    I program a wow bot in VB.NET, without TLS (too difficult for me, or want you to help me via ICQ/MSN? evtl with payment).
    I found the Player Struct with health, maxhealth, mana, maxmana, rage, energy, Player X Y Rotation, in war and mouse state.
    Now, I search the Mob Struct. I found the Mob Struct length and the offset from health to the level. But I dont know how I can find the Mobstruct in my Bot! Must I have the Mobstruct Signature? How can I find this?
    I work with own tools (example) and Art Money.

    Can you please help me?

    Do you need this offsets? Should I post?

    thx

    Help to Get  Mobstruct Signature
  2. #2
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pretty much everything you need is already in this forum section. Search harder.

  3. #3
    vampir26's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Most contents is only for the TLS method.
    Is the Mob Signature a Pointer? Static?
    How can I find the beginning of the Mob Struct?

    Thank you.

    And I continue to search.

    Picture of my Bot
    Last edited by vampir26; 07-24-2008 at 03:16 PM.

  4. #4
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vampir26 View Post
    Most contents is only for the TLS method.
    Is the Mob Signature a Pointer? Static?
    How can I find the beginning of the Mob Struct?

    Thank you.

    And I continue to search.

    Picture of my Bot
    The TLS is really not hard to utilize at all..

    I posted some c++ code on how to do exactly that from outside the wow process. Now, it's not too hard to convert that to VB.. now is it?

  5. #5
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kynox View Post
    The TLS is really not hard to utilize at all..

    I posted some c++ code on how to do exactly that from outside the wow process. Now, it's not too hard to convert that to VB.. now is it?

    It is for people who only know how to copy and paste code then say "OMG I CAN PROGRAM!". (Seemingly a lot of people on this forum )

  6. #6
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Visual Basic sucks hard, so people who use it can't read any other programming language's code...
    atleast that's what I think about VB programmers ^^
    I hacked 127.0.0.1

  7. #7
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xarg0 View Post
    Visual Basic sucks hard, so people who use it can't read any other programming language's code...
    atleast that's what I think about VB programmers ^^

    If you're using .NET then C# is the way to go. Why people use VB I have no idea.

  8. #8
    vampir26's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok, here an example:

    VB.NET:
    Code:
    Dim proc As Process() = Process.GetProcessesByName("WoW")
    Dim wowproc As Process = proc(0)
    Process.EnterDebugMode()
    I write 3 lines in my Bot and have the WoW Process (for memory read) and my Bot have "SeDebugPrivileges".
    How many lines must you write for this effect? :hehehe:

    Why TLS?

    Without TLS, i can...
    ... export my Bot for any other MMORPG
    ... its easier
    ... I must not use complex debuggers (OllyDBG)
    ... I can find the offsets FAST with my own programms

    You cannot give me an answer for my questions?

  9. #9
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vampir26 View Post
    Ok, here an example:

    VB.NET:
    Code:
    Dim proc As Process() = Process.GetProcessesByName("WoW")
    Dim wowproc As Process = proc(0)
    Process.EnterDebugMode()
    I write 3 lines in my Bot and have the WoW Process (for memory read) and my Bot have "SeDebugPrivileges".
    How many lines must you write for this effect? :hehehe:

    Why TLS?

    Without TLS, i can...
    ... export my Bot for any other MMORPG
    ... its easier
    ... I must not use complex debuggers (OllyDBG)
    ... I can find the offsets FAST with my own programms

    You cannot give me an answer for my questions?

    Process proc = new Process.GetProcessByName("WoW);
    Process WoWProc = proc(0);
    Process.EnterDebugMode();

    Err, three?


    Thats not the point tho. The fact is, C# was the language written specifically for the .NET platform, as such it is the most powerful .NET language currently available, possessing a variety of features not available in VB. VB also suffers from a disgusting syntax while C# shares its roots with C++ which makes transitioning to and from the two most awesome programming languages a snap.

    Also, your reasons for not using TLS are so retarded I'm not even gonna go into them. But in short: Bots will require a lot more rewriting for other MMOs than simply changing from TLS, its not 'easier', its most definately not faster, and if you find OllyDbg complex you shouldn't be reverse engineering. Maybe Hello Kitty Island Adventure 2 is a better game for you.

  10. #10
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The fact that you're even writing a Bot in VB is just not right.

    export my Bot for any other MMORPG
    No.
    its easier
    No.
    I must not use complex debuggers (OllyDBG)
    Everything is posted for you..
    I can find the offsets FAST with my own programms
    Thread Local Storage has no need for offsets, and thus > you.

  11. #11
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yet another 'bot' destined to fail. Move along, nothing to see here people.

  12. #12
    vampir26's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Your comparison is not fair.
    You are a professional programmer with 10-20+ years experience.
    Im young and I learn a profession an programm in my free-time.

    Come back in 20 years and I use TLS in C#

    But you cannot give me an answer to my little questions?

  13. #13
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vampir26 View Post
    Your comparison is not fair.
    You are a professional programmer with 10-20+ years experience.
    Im young and I learn a profession an programm in my free-time.

    Come back in 20 years and I use TLS in C#

    But you cannot give me an answer to my little questions?

    I'm 17 years old. 18 in August. With 20+ years experience that would mean I'd be programming before even being conceived. Goddamn I'm ****en awesome! Stroustrup's got nothin on me!

  14. #14
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I too, am only 18. Programming before being conceived was quite a challenge. But with the support of my future to be family i got through it.

    I started out as a tiny little cell. As you can imagine, programming as this cell was quite difficult; the obvious issue at hand was not having any hands. I got past this by using my advanced penis.

    So yeah, thats my story.

  15. #15
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kynox View Post
    I too, am only 18. Programming before being conceived was quite a challenge. But with the support of my future to be family i got through it.

    I started out as a tiny little cell. As you can imagine, programming as this cell was quite difficult; the obvious issue at hand was not having any hands. I got past this by using my advanced penis.

    So yeah, thats my story.

    Ohhhh, penis. Didn't think of that. I used my gigantic (by cell standards) brain to mash my microscopic keyboard.

Page 1 of 2 12 LastLast

Similar Threads

  1. Help me get a new Modem(netgear0!
    By mchugh in forum Community Chat
    Replies: 12
    Last Post: 04-14-2007, 10:14 PM
  2. Help to get my account back
    By earthmage in forum World of Warcraft General
    Replies: 4
    Last Post: 03-22-2007, 05:20 PM
  3. Can someone help me get onto a WoW private server?
    By hyacary in forum Gaming Chat
    Replies: 1
    Last Post: 01-25-2007, 03:14 PM
  4. Help me get to level 60
    By Kaladze in forum World of Warcraft General
    Replies: 4
    Last Post: 08-05-2006, 12:28 AM
  5. Can you help me get a guide?
    By olsalty in forum Community Chat
    Replies: 4
    Last Post: 07-18-2006, 04:01 PM
All times are GMT -5. The time now is 02:16 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search