WoW Current Statics and Offsets menu

User Tag List

Page 5 of 8 FirstFirst 12345678 LastLast
Results 61 to 75 of 117
  1. #61
    localhostage's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tttommeke View Post
    Target base, from target base -0x8 + 0x{HPOffset}, you can't find trough the player his target hp, you need to do it from the mob itself.
    ttt, i've been searching for the target base and came to no luck, also tried searching for forums. have you found a method to locating the target base?

    or for that matter, has anyone else?

    i'm pretty close to writing a full on WoW Class Library in .Net and this would really take the cake.

    WoW Current Statics and Offsets
  2. #62
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by localhostage View Post
    Hey Froogle, thanks for the reply! I see my error now and what I did was just one of those coding.. gotchas!

    I was doing 0xA698000 + 0xA548 which came out totally wrong.

    Just want to note to anyone else who ran into this issue that 0xA698000 is not the same as A698000. lol, thanks!
    Yes it is, You have to subtract the player-base from 0xA548 though. You should be adding 0x2548 (0xA548 - 0x8000, player-base is 0x8000).

    You subtract 0x8000 (or &H8000 for .net apps) so you always replicate the 0xA548 ending. 0x2548 is the true offset, and you must subtract 0x8000 from all the endings provided that have 4 or more digits (because the fourth digit falls on the 8 in 0x8000).

    -Suicidity


  3. #63
    Froogle's Avatar Legendary
    Reputation
    690
    Join Date
    Jan 2007
    Posts
    787
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suicidity View Post
    Yes it is, You have to subtract the player-base from 0xA548 though. You should be adding 0x2548 (0xA548 - 0x8000, player-base is 0x8000).

    You subtract 0x8000 (or &H8000 for .net apps) so you always replicate the 0xA548 ending. 0x2548 is the true offset, and you must subtract 0x8000 from all the endings provided that have 4 or more digits (because the fourth digit falls on the 8 in 0x8000).

    -Suicidity
    Your post makes perfect sense and I messed up with my math . . . I'll add a note on that offset.


  4. #64
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    all the 4 digit offsets posted require to be subtracted by 0x8000

    same with another post about the player structure, You must subtract each offset by 0x10 because of the true offsets and structure


  5. #65
    raindog's Avatar Active Member
    Reputation
    68
    Join Date
    Dec 2007
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    man, you guys are going about it all wrong! There is a function that has been described in a different that when passed a GUID it will return a pointer to the object with that id. In the case of the current target, it works something like this:

    WowObject *p_targ = GetObjPtr(player->target);

  6. #66
    Gothian's Avatar Member
    Reputation
    249
    Join Date
    Jul 2006
    Posts
    496
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by raindog View Post
    man, you guys are going about it all wrong! There is a function that has been described in a different that when passed a GUID it will return a pointer to the object with that id. In the case of the current target, it works something like this:

    WowObject *p_targ = GetObjPtr(player->target);
    What are we supposed to do to get that to work? Were not a leet as you

    Soon you can find my projects at: www.termight.info

  7. #67
    localhostage's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, what do we do what that? 'player -> target' ??? Is there a method which uses the player ptr to get target ptr? Then do I just do player +health offset to the target offset?

  8. #68
    schlumpf's Avatar Retired Noggit Developer

    Reputation
    755
    Join Date
    Nov 2006
    Posts
    2,759
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its called C++... player->target is just a fukken pointer.. Your object player has a structure containing that target variable. The function GetObjPtr(); returns a pointer on a WowObject. The WowObject p_targ will be a pointer to that target's structure then.

    Learn C.

  9. #69
    Gothian's Avatar Member
    Reputation
    249
    Join Date
    Jul 2006
    Posts
    496
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by schlumpf View Post
    Its called C++... player->target is just a fukken pointer.. Your object player has a structure containing that target variable. The function GetObjPtr(); returns a pointer on a WowObject. The WowObject p_targ will be a pointer to that target's structure then.

    Learn C.
    Ahh I see, I though it was some sort of machine code, I didnt know it was simply C, which means I can do a .NET version

    Soon you can find my projects at: www.termight.info

  10. #70
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ..... jesus christ. Shoot me now. lol j/k j/k


  11. #71
    robotkid's Avatar Contributor
    Reputation
    83
    Join Date
    Nov 2007
    Posts
    117
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    excellent post! i saved some hours of memory searching =P +rep

  12. #72
    raindog's Avatar Active Member
    Reputation
    68
    Join Date
    Dec 2007
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gothian View Post
    Ahh I see, I though it was some sort of machine code, I didnt know it was simply C, which means I can do a .NET version

    In this case you can't really. GetObjPtr is a function inside of wow. I defined a structure that conforms to the same struct wow has. You can't really do that in .NET, perhaps unsafe C# but not VB.

  13. #73
    Gothian's Avatar Member
    Reputation
    249
    Join Date
    Jul 2006
    Posts
    496
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by raindog View Post
    In this case you can't really. GetObjPtr is a function inside of wow. I defined a structure that conforms to the same struct wow has. You can't really do that in .NET, perhaps unsafe C# but not VB.
    You logic is flawed here as C# and VB.NET are essentially the same language.

    You can take C# code and translate it into VB.NET and it will have the exact same functionality. It all compiles into IL code anyway.

    Soon you can find my projects at: www.termight.info

  14. #74
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gothian View Post
    You logic is flawed here as C# and VB.NET are essentially the same language.

    You can take C# code and translate it into VB.NET and it will have the exact same functionality. It all compiles into IL code anyway.
    WRONG! (Sorry, but you are )

    VB.NET does NOT have an equivalent of the 'unsafe' keyword, you need to add a C# part to your solution to do the 'dirty work'. Unsafe C# code is run as native code and does not run under the CLR.

    Links:
    O'Reilly Media | C# & VB.NET Conversion Pocket Reference
    Choosing between C# and VB.NET
    Philippe Lacoude Homepage
    Comparison of C sharp and Visual Basic .NET - Wikipedia, the free encyclopedia

  15. #75
    Gothian's Avatar Member
    Reputation
    249
    Join Date
    Jul 2006
    Posts
    496
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Chazwazza View Post
    WRONG! (Sorry, but you are )

    VB.NET does NOT have an equivalent of the 'unsafe' keyword, you need to add a C# part to your solution to do the 'dirty work'. Unsafe C# code is run as native code and does not run under the CLR.

    Links:
    O'Reilly Media | C# & VB.NET Conversion Pocket Reference
    Choosing between C# and VB.NET
    Philippe Lacoude Homepage
    Comparison of C sharp and Visual Basic .NET - Wikipedia, the free encyclopedia
    Consider myself proven wrong.

    But in my defense, I was not aware of the "Unsafe" feature, because what you can do with C#, you can do with VB.NET (besides the unsafe portion of course)

    But my guess is that you can use the Windows API calls to manage that? Or just write a DLL and reference it in a .NET application?

    Soon you can find my projects at: www.termight.info

Page 5 of 8 FirstFirst 12345678 LastLast

Similar Threads

  1. Question about general DMA and Offsets in Wow
    By mynamedan in forum WoW Memory Editing
    Replies: 6
    Last Post: 06-06-2010, 06:52 AM
  2. [HELP] Memory offsets, questions about static and dynamic
    By Shutzler in forum WoW Memory Editing
    Replies: 7
    Last Post: 09-14-2009, 11:24 AM
  3. QQ my wow acc hacked and gone
    By Kazzin100 in forum World of Warcraft General
    Replies: 10
    Last Post: 06-11-2007, 08:23 PM
  4. WoW - Legends ! Guide and Database!
    By wow_pwner in forum World of Warcraft General
    Replies: 1
    Last Post: 03-18-2007, 03:27 PM
  5. WoW Gold guide and RL if u want:)
    By Nolixz in forum World of Warcraft Guides
    Replies: 23
    Last Post: 12-18-2006, 10:24 PM
All times are GMT -5. The time now is 08:23 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