4.0.3 Wow - Offsets menu

Shout-Out

User Tag List

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 52
  1. #31
    yeahlol's Avatar Member
    Reputation
    -6
    Join Date
    Nov 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm... is the object type correct? Its listed as

    OBJECT_FIELD_TYPE = 0x8

    but i belive it is 0x14, at 0x8 im just getting 5 dig total random (almost :P) but at 0x14 i get numbers from 1-7.

    4.0.3 Wow - Offsets
  2. #32
    xwinterx's Avatar Member
    Reputation
    26
    Join Date
    Apr 2009
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it's 0x14.

  3. #33
    yeahlol's Avatar Member
    Reputation
    -6
    Join Date
    Nov 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xwinterx View Post
    it's 0x14.
    Great

    BTW, does anyone know the offset to the players facing? radian float val me thinks...

  4. #34
    Flowerew's Avatar Master Sergeant
    Reputation
    72
    Join Date
    Oct 2009
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yeahlol View Post
    Great

    BTW, does anyone know the offset to the players facing? radian float val me thinks...
    Last time I saw the movement struct it was at [playerbase+0x100] and facing was at +0x20, though I didn't check that yet for the current patch.
    Last edited by Flowerew; 11-23-2010 at 03:32 AM.

  5. #35
    yeahlol's Avatar Member
    Reputation
    -6
    Join Date
    Nov 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could anyone confirm:

    Code:
    LOCAL_GUID_OFFSET = 0xB8
    or am i doing it wrong:

    Code:
    ClientConnection = Memory.Read<uint>(Memory.BaseAddress + Pointers.ObjectManagerPointers.CLIENT_CONNECTION);
    ObjectMngr = Memory.Read<uint>(ClientConnection + Pointers.ObjectManagerPointers.OBJECT_MANAGER_OFFSET);
    LocalPlayerGUID = Memory.Read<ulong>(ObjectMngr + Pointers.ObjectManagerPointers.LOCAL_GUID_OFFSET);
    ...
    ulong objGUID = Memory.Read<ulong>(currentObj.BaseAddress + Pointers.ObjectOffsets.OBJECT_FIELD_GUID);
    
    if LocalPlayerGUID == objGUID
    { 
    ..
    ??

    BTW: found an error with UNIT Y pos, its 0x89C not 0x88C as stated

    BTW again: UNIT_FACING is found at 0x8A8
    Last edited by yeahlol; 11-23-2010 at 03:02 PM. Reason: update ypos

  6. #36
    caytchen's Avatar Contributor
    Reputation
    138
    Join Date
    Apr 2007
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yeahlol View Post
    ...
    Its because you have absolutely no idea how to use the descriptors and are now polluting this thread, which sole purpose is to collect build information, with your sheer ignorance.

  7. #37
    Neffarian's Avatar Member
    Reputation
    -5
    Join Date
    Sep 2006
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stop hating, and instead since you know so much, why dont you write a tutorial on how to use findpattern instead, this way theses threads are pointless : }

  8. #38
    _Mike's Avatar Contributor
    Reputation
    310
    Join Date
    Apr 2008
    Posts
    531
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You want a tutorial on how to call a function? Wow, I think we've hit a new low..
    The section rules are pretty clear; If you don't know wtf you're doing, don't post.

  9. #39
    Chinchy's Avatar Active Member
    Reputation
    21
    Join Date
    Mar 2009
    Posts
    71
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why don't you search the forums to find out how to use FindPattern? I know for a fact there's at LEAST two threads with documentation on it.

  10. #40
    yeahlol's Avatar Member
    Reputation
    -6
    Join Date
    Nov 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    mmm... nothing is better then some hate from peeps that know it all.

    First off, polluting? Common, ive checked a couple of addresses, found some anomalies and shouted out to the forum if someone could verify this.

    Secondly I contributed (altho very little) a couple of addresses, cut me some slack - I'm new but i see this forum has a thing for hatin' newbs. ty ty

    EDIT: Chinchy, could you post some urls to the threads? I've searched but i would like to read the ones you think of please.
    Last edited by yeahlol; 11-24-2010 at 02:45 AM. Reason: Chinchy post some urls pls

  11. #41
    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)
    We don't hate noobs, we hate people who expect to come here and be spoonfed.

    You're the perfect example. Why should Chinchy go hunting for threads just because you're lazy or incompetent? There are a number of threads covering FindPattern both here. I'd tell you to check out Game Deception too, but if you think this forum is harsh on noobs, you have obviously never been to GD (morons who can't read the rules there are generally banned on sight).

    http://www.mmowned.com/forums/world-...ion-rules.html

    I suggest you re-read the rules of this section, and also namreeb's excellent summary.

  12. #42
    caytchen's Avatar Contributor
    Reputation
    138
    Join Date
    Apr 2007
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yeahlol View Post
    mmm... nothing is better then some hate from peeps that know it all.

    First off, polluting? Common, ive checked a couple of addresses, found some anomalies and shouted out to the forum if someone could verify this.

    Secondly I contributed (altho very little) a couple of addresses, cut me some slack - I'm new but i see this forum has a thing for hatin' newbs. ty ty

    EDIT: Chinchy, could you post some urls to the threads? I've searched but i would like to read the ones you think of please.
    You didn't correct anything, you just simply have no idea how to use the descriptors and end up reading wrong data. The short answer is [[object + 0x8] + OBJECT_FIELD_GUID], but this thread is not here to hold your hand, but to ease migration after patch day.

  13. #43
    Flowerew's Avatar Master Sergeant
    Reputation
    72
    Join Date
    Oct 2009
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cypher View Post
    We don't hate noobs, we hate people who expect to come here and be spoonfed.

    You're the perfect example. Why should Chinchy go hunting for threads just because you're lazy or incompetent? There are a number of threads covering FindPattern both here. I'd tell you to check out Game Deception too, but if you think this forum is harsh on noobs, you have obviously never been to GD (morons who can't read the rules there are generally banned on sight).

    http://www.mmowned.com/forums/world-...ion-rules.html

    I suggest you re-read the rules of this section, and also namreeb's excellent summary.
    I don't know why, but somehow you came back nicer after your ban. I know, I know... you don't give a ****, but I like that Cypher more, even when you're not nice, you're nicer than before. Thumbs up! (no irony)

    And yeah ... you damn lazy leechers, shooo, shooooooooooo!!!

  14. #44
    johnmarsh110's Avatar Private
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmmm nice really great thanks for that

  15. #45
    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 Flowerew View Post
    I don't know why, but somehow you came back nicer after your ban. I know, I know... you don't give a ****, but I like that Cypher more, even when you're not nice, you're nicer than before. Thumbs up! (no irony)

    And yeah ... you damn lazy leechers, shooo, shooooooooooo!!!
    Just in a better than normal mood at the moment. However, I obviously need to balance my previous post:
    I violated your mother with a retractable baton.

    How's that?

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. WoW Offsets & WPE
    By RyanoAthens in forum World of Warcraft General
    Replies: 2
    Last Post: 03-11-2014, 10:15 PM
  2. WoW Current Statics and Offsets
    By Froogle in forum WoW Memory Editing
    Replies: 116
    Last Post: 07-05-2008, 11:49 PM
  3. How to find WoW Memory Offset?
    By pegaa in forum World of Warcraft General
    Replies: 0
    Last Post: 08-03-2007, 12:02 AM
  4. WoW 2.1.2 Offsets
    By Cypher in forum World of Warcraft General
    Replies: 0
    Last Post: 06-30-2007, 03:23 AM
All times are GMT -5. The time now is 09:46 AM. 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