[WoW][3.2.0] Info Dump Thread menu

Shout-Out

User Tag List

Page 10 of 14 FirstFirst ... 67891011121314 LastLast
Results 136 to 150 of 205
  1. #136
    FenixTX2's Avatar Active Member
    Reputation
    23
    Join Date
    Mar 2009
    Posts
    125
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anybody know the new player pitch offset? It doesn't seem to be at 0x7AC or 0x7E4?
    Thnx


    Edit: Actually they are there, was having an idiot day.
    Last edited by FenixTX2; 09-19-2009 at 07:40 AM.

    [WoW][3.2.0] Info Dump Thread
  2. #137
    psior's Avatar Member
    Reputation
    2
    Join Date
    Jul 2009
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    NPC Names

    Didn't see this mentioned in the thread so here it is in case anyone needs:


    Pointer to NPC Names = [[objbase +0x968]+0x5C]

  3. #138
    Sel3n's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    offsetPatch = 0x00401653

  4. #139
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sel3n View Post
    offsetPatch = 0x00401653
    Very descriptive, thanks for the amazing contribute.

  5. #140
    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 Sel3n View Post
    offsetPatch = 0x00401653
    You do realize all that is, is a set of breakpoints in the function alignment.. right?

  6. #141
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kynox View Post
    You do realize all that is, is a set of breakpoints in the function alignment.. right?
    Ahaha win, I just checked XD 13 bytes of good delicious alignment!

  7. #142
    Sel3n's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry I missed a "?" at the end --'

  8. #143
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sel3n View Post
    sorry I missed a "?" at the end --'
    Thanks, now it makes sense...
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  9. #144
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sel3n View Post
    sorry I missed a "?" at the end --'
    Fyi Sel3n offsetPatch isn't very descriptive...

  10. #145
    qjlex's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How to find a window with loot?

  11. #146
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think im missing something.

    Heres what I have for reading my XYZ:

    Code:
     
    ;Hook Process
    SETPRIVILEGE("SeDebugPrivilege", 1)
    Dim $ProPID = WinGetProcess("World of Warcraft")
    $wowhook = _MemoryOpen($ProPID)
    ;Hook Process end
    
    ;Settings
    $Playerbase =  0x12BEDB8
    $off1 = 0x34
    $off2 = 0x24
    $Player_xoff = 0x80
    $Player_yoff = 0x84
    $Player_zoff = 0x88
    Global $Playerbase, $PTRPLAYERX, $PTRPLAYERY, $PTRPLAYERZ
    
    Func GetPointers()
        Global $LVL1POINTER = _MemoryRead($Playerbase, $wowhook, "ptr")
        Global $LVL2POINTER = _MemoryRead(($LVL1POINTER + $off1), $wowhook, "ptr")
        Global $PlayerMEM = _MemoryRead(($LVL2POINTER + $off2), $wowhook, "ptr")
        $PTRPLAYERX = $PlayerMEM + $Player_xoff
        $PTRPLAYERY = $PlayerMEM + $Player_yoff
        $PTRPLAYERZ = $PlayerMEM + $Player_zoff
    EndFunc  ;==>GetPointers
    Any help would be awesome
    Last edited by ashleyww; 08-31-2009 at 03:59 PM. Reason: Typos/Changed code

  12. #147
    Sel3n's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    ;Hook Process
    SETPRIVILEGE("SeDebugPrivilege", 1)
    Dim $ProPID = WinGetProcess("World of Warcraft")
    $wowhook = _MemoryOpen($ProPID)
    ;Hook Process end
    
    ;Settings
    $Playerbase =  0x12BEDB8
    $off1 = 0x34
    $off2 = 0x24
    $Player_xoff = 0x798
    $Player_yoff = 0x79C
    $Player_zoff = 0x7A0
    Global $Playerbase, $PTRPLAYERX, $PTRPLAYERY, $PTRPLAYERZ
    
    Func GetPointers()
        Global $LVL1POINTER = _MemoryRead($Playerbase, $wowhook, "ptr")
        Global $LVL2POINTER = _MemoryRead(($LVL1POINTER + $off1), $wowhook, "ptr")
        Global $PlayerMEM = _MemoryRead(($LVL2POINTER + $off2), $wowhook, "ptr")
        $PTRPLAYERX = $PlayerMEM + $Player_xoff
        $PTRPLAYERY = $PlayerMEM + $Player_yoff
        $PTRPLAYERZ = $PlayerMEM + $Player_zoff
    EndFunc  ;==>GetPointers
    and for read coordinates with your stuff just

    Code:
    $cX = _MemoryRead($PTRPLAYERX, $wowhook, "float")
    $cY = _MemoryRead($PTRPLAYERY, $wowhook, "float")
    $cZ = _MemoryRead($PTRPLAYERZ, $wowhook, "float")
    but your code is too crappy, I rewrite him :

    Code:
    ;Hook Process Start
    SETPRIVILEGE("SeDebugPrivilege", 1)
    Global $wowhook = _MemoryOpen(WinGetProcess("World of Warcraft"))
    ;Hook Process end
    
    ;Settings
    Global $Playerbase =  0x12BEDB8
    Global $off1 = 0x34
    Global $off2 = 0x24
    Global $Player_xoff = 0x798
    Global $Player_yoff = 0x79C
    Global $Player_zoff = 0x7A0
    
    
    Func GetPointers()
        Global $PLAYERMEM = _MemoryRead(_MemoryRead(_MemoryRead($Playerbase, $wowhook, "ptr") + $off1, $wowhook, "ptr") + $off2, $wowhook, "ptr")
    EndFunc  ;==>GetPointers
    
    $cX = _MemoryRead($PLAYERMEM + $Player_xoff, $wowhook, "float")
    $cY = _MemoryRead($PLAYERMEM + $Player_yoff, $wowhook, "float")
    $cZ = _MemoryRead($PLAYERMEM + $Player_zoff, $wowhook, "float")
    AutoIt is too far away for me, but it does work.

  13. #148
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sel3n View Post
    Code:
    ;Hook Process
    SETPRIVILEGE("SeDebugPrivilege", 1)
    Dim $ProPID = WinGetProcess("World of Warcraft")
    $wowhook = _MemoryOpen($ProPID)
    ;Hook Process end
    
    ;Settings
    $Playerbase =  0x12BEDB8
    $off1 = 0x34
    $off2 = 0x24
    $Player_xoff = 0x798
    $Player_yoff = 0x79C
    $Player_zoff = 0x7A0
    Global $Playerbase, $PTRPLAYERX, $PTRPLAYERY, $PTRPLAYERZ
    
    Func GetPointers()
        Global $LVL1POINTER = _MemoryRead($Playerbase, $wowhook, "ptr")
        Global $LVL2POINTER = _MemoryRead(($LVL1POINTER + $off1), $wowhook, "ptr")
        Global $PlayerMEM = _MemoryRead(($LVL2POINTER + $off2), $wowhook, "ptr")
        $PTRPLAYERX = $PlayerMEM + $Player_xoff
        $PTRPLAYERY = $PlayerMEM + $Player_yoff
        $PTRPLAYERZ = $PlayerMEM + $Player_zoff
    EndFunc  ;==>GetPointers
    and for read coordinates with your stuff just

    Code:
    $cX = _MemoryRead($PTRPLAYERX, $wowhook, "float")
    $cY = _MemoryRead($PTRPLAYERY, $wowhook, "float")
    $cZ = _MemoryRead($PTRPLAYERZ, $wowhook, "float")
    but your code is too crappy, I rewrite him :

    Code:
    ;Hook Process Start
    SETPRIVILEGE("SeDebugPrivilege", 1)
    Global $wowhook = _MemoryOpen(WinGetProcess("World of Warcraft"))
    ;Hook Process end
    
    ;Settings
    Global $Playerbase =  0x12BEDB8
    Global $off1 = 0x34
    Global $off2 = 0x24
    Global $Player_xoff = 0x798
    Global $Player_yoff = 0x79C
    Global $Player_zoff = 0x7A0
    
    
    Func GetPointers()
        Global $PLAYERMEM = _MemoryRead(_MemoryRead(_MemoryRead($Playerbase, $wowhook, "ptr") + $off1, $wowhook, "ptr") + $off2, $wowhook, "ptr")
    EndFunc  ;==>GetPointers
    
    $cX = _MemoryRead($PLAYERMEM + $Player_xoff, $wowhook, "float")
    $cY = _MemoryRead($PLAYERMEM + $Player_yoff, $wowhook, "float")
    $cZ = _MemoryRead($PLAYERMEM + $Player_zoff, $wowhook, "float")
    AutoIt is too far away for me, but it does work.
    I still get 0's :'(

  14. #149
    Sel3n's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Executed in administrator?

  15. #150
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yep. Maybe i need the beta Autoit... Ill check.

    EDIT: Nope Still getting 0's
    Last edited by ashleyww; 08-31-2009 at 04:43 PM.

Similar Threads

  1. [WoW][3.3.2] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 113
    Last Post: 03-16-2010, 01:05 PM
  2. [WoW][3.3.0] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 104
    Last Post: 02-02-2010, 01:26 AM
  3. [WoW][3.2.2] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 155
    Last Post: 12-04-2009, 12:40 AM
  4. [WoW][3.1.0] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 1
    Last Post: 05-03-2009, 01:29 PM
  5. [WoW][3.0.9] Info dump thread
    By Apoc in forum WoW Memory Editing
    Replies: 8
    Last Post: 03-19-2009, 03:18 PM
All times are GMT -5. The time now is 11:07 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