[WoW][3.3.5.12340] Info Dump Thread menu

User Tag List

Page 3 of 6 FirstFirst 123456 LastLast
Results 31 to 45 of 84
  1. #31
    Cheatz0's Avatar Member
    Reputation
    14
    Join Date
    May 2009
    Posts
    36
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jadd2 View Post
    Does this even do anything?
    I'm guessing, for you, it won't do anything..

    [WoW][3.3.5.12340] Info Dump Thread
  2. #32
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No, its not intended to do anything but to show you how the functions can be used.

  3. #33
    bolototo's Avatar Banned
    Reputation
    0
    Join Date
    May 2009
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Camera_Pointer = 0x00B7436C
    Camera_Offset = 0x7E20
    Camera_X = 0x8
    Camera_Y = 0xC
    Camera_Z = 0x10
    Camera_Facing=0x24
    Camera_Tilt=0x20

  4. #34
    Thunderofnl's Avatar Elite User C# / Java / PHP Programmer
    Authenticator enabled
    Reputation
    491
    Join Date
    May 2008
    Posts
    1,032
    Thanks G/R
    20/20
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone tell me what the Offset is for Character class?

  5. #35
    Arutha532's Avatar Contributor
    Reputation
    227
    Join Date
    Jun 2010
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can get it from UNIT_FIELD_BYTES_0 together with Race, Power and Gender.
    The answer is already posted by Chyper in another thread.
    Last edited by Arutha532; 09-05-2010 at 02:45 PM.

  6. #36
    paspe's Avatar Private
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Offsets 3.3.5(12340)

    Hi anyone can help me ?
    if find a offset for wow.exe(EU),
    Player Life in group, and PET

    my Offsets and function:

    Code:
    //define
    DWORD GetDLL(char* DllName, DWORD tPid);
    DWORD GetPidByName(char *szProcName);
    
    //READ EXE
    DWORD GetPidByName(char *szProcName){
           PROCESSENTRY32 pe = {sizeof(PROCESSENTRY32)};
           HANDLE hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
    
           if(hSnap != INVALID_HANDLE_VALUE)
                    {
                    if(Process32First(hSnap, &pe))
                     {
                      do
                      {
                       if(strcmpi(pe.szExeFile, szProcName) == 0)
                       {
                        dwPID = pe.th32ProcessID;
    
                        break;
                       }
                      }
                     while(Process32Next(hSnap, &pe));
                     }
                    CloseHandle(hSnap);
                    }
           return dwPID;
          }
    
    //if u need memory of DLL
    DWORD GetDLL(char* DllName, DWORD tPid){
    	HANDLE snapMod;
    	MODULEENTRY32 me32;
    
    	if (tPid == 0) return 0;
    	snapMod = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, tPid);
    	me32.dwSize = sizeof(MODULEENTRY32);
    
    	if (Module32First(snapMod, &me32)){
    		do{
    			if (strcmp(DllName,me32.szModule) == 0){
    				CloseHandle(snapMod);
    				return (DWORD) me32.modBaseAddr;
    			}
    		}while(Module32Next(snapMod,&me32));
    	}
    
    	CloseHandle(snapMod);
    	return 0;
    }
    exemple of use:
    Code:
    if(GetPidByName("Wow.exe")!=0)
    {wow = GetDLL("Wow.exe", dwPID);DLL = GetDLL("Battle.net.dll", dwPID);}
    else{exit(0);}
    
    //wow = memory adress wow.exe
    //DLL = memory adress Battle.net.dll
    My offset and use with code:

    Code:
    int adresseMyLife=0x008D87A8;//(+wow.exe)
    int adresseOffsetMyLife1=0x34;
    int adresseOffsetMyLife2=0x24;
    int adresseOffsetMyLife3=0x6C;
    int adresseOffsetMyLife4=0x64;
    int adresseMyLifeMax=0x68;
    int adresseMyLifeMin=0x48;
    
    int adresseHowManyInGroup=0x007D1998;(+wow.exe)
    
    
    
    h_Read_Process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, dwPID);
    phandle = OpenProcess(PROCESS_ALL_ACCESS, 0, dwPID);
    
    //tempon is a buffer in french :D
    ReadProcessMemory(h_Read_Process,(LPCVOID)(wow+adresseMyLife), &tempon, sizeof(int), NULL);
    ReadProcessMemory(h_Read_Process,(LPCVOID)(tempon+adresseOffsetMyLife1), &tempon, sizeof(int), NULL);
    ReadProcessMemory(h_Read_Process,(LPCVOID)(tempon+adresseOffsetMyLife2), &tempon, sizeof(int), NULL);
    ReadProcessMemory(h_Read_Process,(LPCVOID)(tempon+adresseOffsetMyLife3), &tempon, sizeof(int), NULL);
    ReadProcessMemory(h_Read_Process,(LPCVOID)(tempon+adresseOffsetMyLife4), &tempon, sizeof(int), NULL);
    ReadProcessMemory(h_Read_Process,(LPCVOID)(tempon+adresseMyLifeMin), &moiVieMin, sizeof(int), NULL);
    ReadProcessMemory(h_Read_Process,(LPCVOID)(tempon+adresseMyLifeMax), &moiVieMax, sizeof(int), NULL);
    
    if(moiVieMax==0||moiVieMin<0){moiVie=0;}else{moiVie=((float)moiVieMin/(float)moiVieMax*100);}//moiVie = % off life.
    
    
    //HOW MANY IN GROUP 1? 2? 3? 4? (whiout PET)
    ReadProcessMemory(h_Read_Process,(LPCVOID)(wow+adresseHowManyInGroup), &nombreJoueur, sizeof(int), NULL);
    // result = nombreJoueur;
    for the name:
    Code:
    //define
    CHAR MEMOIRE_LireTexteASCII(DWORD u32_adresse, CHAR *pu32_data, UINT32 u32_tailleMax);
    
    
    //function
    CHAR MEMOIRE_LireTexteASCII(DWORD u32_adresse, CHAR *pu32_data, UINT32 u32_tailleMax) {
      if(ReadProcessMemory(h_Read_Process,(LPCVOID)u32_adresse, &pu32_data[0], u32_tailleMax, NULL) == 0) return -1;
      return 0;
    }
    
    
    //USE
    MEMOIRE_LireTexteASCII(wow+0x00879D18,monNom,32);
    plz help me for find life of group and pet, i'm not a pro THANKS !!!!
    (sry i have a bad english :x)

  7. #37
    mavrock's Avatar Member
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  8. #38
    CharliesName's Avatar Private
    Reputation
    -6
    Join Date
    Sep 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You guys will hate me now but what the hell...
    I've been searching the net for a proper Pointer/Offsets tutorial for days now (without resluts ofc...)
    Can someone PLEASE give me a link to a good tutorial!
    Thanks!

  9. #39
    -Ryuk-'s Avatar Elite User CoreCoins Purchaser Authenticator enabled
    Reputation
    529
    Join Date
    Nov 2009
    Posts
    1,028
    Thanks G/R
    38/51
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CharliesName View Post
    You guys will hate me now but what the hell...
    I've been searching the net for a proper Pointer/Offsets tutorial for days now (without resluts ofc...)
    Can someone PLEASE give me a link to a good tutorial!
    Thanks!

    How to search the real way

    (filler)
    |Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|

  10. #40
    NitroGlycerine's Avatar Member
    Reputation
    3
    Join Date
    May 2009
    Posts
    45
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Arena opponents:
    $Arena1GUID = 0x00BE9F48
    $Arena2GUID = 0x00BE9F50
    $Arena3GUID = 0x00BE9F58
    $Arena4GUID = 0x00BE9F60
    $Arena5GUID = 0x00BE9F68

    Player pet:
    $PetGUID = 0x00C234D0

  11. #41
    Syltex's Avatar Sergeant Major
    Reputation
    23
    Join Date
    Jul 2010
    Posts
    174
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    eny one haz tha g0dmode 0ffzet?



    PS. Some one needed to say it..

  12. #42
    paspe's Avatar Private
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by NitroGlycerine View Post
    Arena opponents:
    $Arena1GUID = 0x00BE9F48
    $Arena2GUID = 0x00BE9F50
    $Arena3GUID = 0x00BE9F58
    $Arena4GUID = 0x00BE9F60
    $Arena5GUID = 0x00BE9F68

    Player pet:
    $PetGUID = 0x00C234D0
    thanks man

  13. #43
    Syltex's Avatar Sergeant Major
    Reputation
    23
    Join Date
    Jul 2010
    Posts
    174
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    /off tropic
    @ Chyper
    You a moron.. Can´t take a joke and a -7 rep me??
    FFS i was bored..
    Back to leecher.. again..

  14. #44
    XTZGZoReX's Avatar Active Member
    Reputation
    32
    Join Date
    Apr 2008
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Uh oh, butthurt.

  15. #45
    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 Syltex View Post
    /off tropic
    @ Chyper
    You a moron.. Can´t take a joke and a -7 rep me??
    FFS i was bored..
    Back to leecher.. again..
    Ahahahhaaaaaaaha. Perhaps you shouldn't say stupid shit

Page 3 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. [WoW][4.0.6.13596] Info Dump Thread
    By TOM_RUS in forum WoW Memory Editing
    Replies: 47
    Last Post: 11-12-2012, 02:48 PM
  2. [WoW][4.0.3.13329] Info Dump Thread
    By TOM_RUS in forum WoW Memory Editing
    Replies: 73
    Last Post: 02-06-2011, 06:37 AM
  3. [WoW][4.0.1.13164] Info Dump Thread
    By Seifer in forum WoW Memory Editing
    Replies: 29
    Last Post: 01-18-2011, 09:14 AM
  4. [WoW][4.0.1.13205] Info Dump Thread
    By DrGonzo in forum WoW Memory Editing
    Replies: 12
    Last Post: 11-11-2010, 02:34 PM
  5. [WoW][3.3.3.11723] Info Dump Thread
    By miceiken in forum WoW Memory Editing
    Replies: 2
    Last Post: 03-27-2010, 04:42 PM
All times are GMT -5. The time now is 03:18 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