Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    HexMurder's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    System.Diagnostics
    Posts
    344
    Reputation
    96
    Thanks
    3,168

    WaW Offset Dumper - ALL DVARS

    Long story short; World at war was the first game i ever hacked. And to this day i find myself searching for new hacks to make on waw zombies when i get bored. Unfortunately this section of mpgh is nearly dead. Another member posted a bunch of offsets which (unfortunately) are incorrect for most of us because they are not pointers. SO I took it upon myself to create this little tool for anyone who wants to hack what is still left of this game. Probably not useful for most people but whatever. Some devs may appreciate it.

    Simply run the game, start a game of zombies or a solo level, run my hack, enter your process name (usually codwaw.exe) hit enter.


    A list is generated called DvarDump.txt.
    After that just open up the text file and its pretty straight forward. Add the address for the dvar you want in cheat engine and hack away.


    Maybe i'l get around to making one FINAL trainer that has every feature i can think of for this game. Really love hacking this one and it's such a shame that people have forgotten it. Anyway hope you all enjoy. Thanks a ton to barata for helping me with this.


    NOTE:When adding addresses to cheat engine make sure they are the correct type. i.e. when adding the address for jump_height it will say the value is some gibberish number like 102322105 untill you change it to float. then it reads it correctly as 39.

    Also keep in mind that this searches through active game memory. So you will probably find more dvars if you load a level than if you just boot the game and run this in the main menu.


    virus scans:
    https://virusscan.jotti.org/en-US/fi...job/ayeugb46g7
    https://www.virustotal.com/en/file/c...is/1469692922/
    <b>Downloadable Files</b> Downloadable Files
    Last edited by HexMurder; 07-28-2016 at 02:09 AM.

  2. The Following 30 Users Say Thank You to HexMurder For This Useful Post:

    -[jello]- (11-01-2021),7er (12-21-2016),Above_Beyond (08-01-2016),FDSFDSfsdvfdhgb (07-30-2020),firecobra1234 (09-22-2016),fluffybananas22 (07-24-2023),FMPC (01-03-2017),GingerAtArms (04-07-2019),gogogokitty (08-02-2016),HiImKyle (12-30-2019),hoogste1 (11-03-2016),jambo834429 (08-07-2016),Kappa99999 (09-13-2020),kyle722001 (01-20-2018),KyleCFW (12-07-2020),LocatingWizard (10-02-2017),lukaslaura111 (04-25-2017),megoth (05-29-2022),mehax (06-05-2017),peterh0llandalt (07-22-2018),proking1272 (01-04-2020),raj20 (11-09-2016),rektibator (05-27-2018),SatanIsGood (03-08-2019),skylr (11-06-2017),TehSlit (08-23-2016),X_JustWessel_X (08-28-2020),ypisdead (04-06-2023),Z-Nation (08-01-2016),Zekeo (01-29-2018)

  3. #2
    akim14's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    896
    Reputation
    293
    Thanks
    5,054
    My Mood
    Doh
    //Approved
    [IMG]
    MPGH Member since 10. 21. 2009
    CoD section Minion 22. 01. 2015 - 23. 02. 2017
    GTA section Minion 15. 07.2015 - 23. 02. 2017
    Minion+ 27. 01. 2016 - 23. 02. 2017
    Skype Impersonator: mpgh.akim14. (always use skype buton on my profile and contact me here)

  4. #3
    Robloitz's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    85
    HOw did you even get the offsets

  5. #4
    HexMurder's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    System.Diagnostics
    Posts
    344
    Reputation
    96
    Thanks
    3,168
    Quote Originally Posted by Robloitz View Post
    HOw did you even get the offsets
    Lots of hard work. Debugging, Reversing, C++ing.

  6. #5
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    feedback = good
    LEEEEEEROY JEEEEENKINS

  7. #6
    jambo834429's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    Would this in theory allow me to change a dvar even if im not the host for example turning god on or giving all for example

  8. #7
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by jambo834429 View Post
    Would this in theory allow me to change a dvar even if im not the host for example turning god on or giving all for example
    no, you can only alter dvars if your host
    LEEEEEEROY JEEEEENKINS

  9. #8
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    whys this game have to be dead. its still one of the funnest call of duty's to date
    LEEEEEEROY JEEEEENKINS

  10. #9
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by HexMurder View Post


    Lots of hard work. Debugging, Reversing, C++ing.
    Just lol. It took about 1 minute to find the 2 needed address. The code I came up with is just 16 lines.

    Code:
    #include <fstream>
    #include <algorithm>
    
    struct DvarDumper
    {
    	DvarDumper(const char* fileName)
    	{
    		std::fstream file { fileName, std::ios::out | std::ios::app };
    		std::for_each(reinterpret_cast<const char***>(0x063EF348), reinterpret_cast<const char***>(0x063EF348) + *reinterpret_cast<size_t*>(0x063EF320),
    			[&file](auto dvar)
    			{
    				file << "Name: " << *dvar << "\nDescription: " << *(dvar + 1) << "\nAddress: 0x" << dvar << "\n\n";
    			});
    		file.close();
    	}
    } dvarDumper("dvars.txt");
    Compile it as a dll (you will need C++14) and inject. The addresses are for an older version of MW2. (I don't have WaW installed atm)

  11. The Following User Says Thank You to gerherhtherherdhher For This Useful Post:

    megoth (05-29-2022)

  12. #10
    Z-Nation's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Location
    47.614028°N 122.194015°W
    Posts
    1,831
    Reputation
    136
    Thanks
    4,328
    My Mood
    Amazed
    Quote Originally Posted by gogogokitty View Post
    whys this game have to be dead. its still one of the funnest call of duty's to date
    Hopefully B03 will become this good when they finally release the Mod support system...
    Like Something that i did or what i've uploaded?




     

    • Join Date: 09-13-2013
    • PREMIUM Since: 11-5-2015

     

  13. The Following 2 Users Say Thank You to Z-Nation For This Useful Post:

    gogogokitty (08-31-2016),megoth (05-29-2022)

  14. #11
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    somewhat off topic question, any idea what the base address is for the dvars so i can find the offsets/pointers for each command?
    LEEEEEEROY JEEEEENKINS

  15. #12
    HexMurder's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    System.Diagnostics
    Posts
    344
    Reputation
    96
    Thanks
    3,168
    Quote Originally Posted by gogogokitty View Post
    somewhat off topic question, any idea what the base address is for the dvars so i can find the offsets/pointers for each command?
    I don't have the source anymore. I just used ida and looked for a string that said something along the lines of "Can't create dvar". Then i reverse engineered from there to find the dvar base address. Sorry if that doesn't help.

  16. The Following User Says Thank You to HexMurder For This Useful Post:

    gogogokitty (09-21-2016)

  17. #13
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by HexMurder View Post


    I don't have the source anymore. I just used ida and looked for a string that said something along the lines of "Can't create dvar". Then i reverse engineered from there to find the dvar base address. Sorry if that doesn't help.
    that will probably help once i get ida installed, ive used it twice, both times had not known anything about it. did you use any specific source to learn ida?
    LEEEEEEROY JEEEEENKINS

  18. #14
    HexMurder's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    System.Diagnostics
    Posts
    344
    Reputation
    96
    Thanks
    3,168
    Quote Originally Posted by gogogokitty View Post
    that will probably help once i get ida installed, ive used it twice, both times had not known anything about it. did you use any specific source to learn ida?
    Trial and error my friend lol. I'm not too good with ida tbh.

  19. #15
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by HexMurder View Post


    Trial and error my friend lol. I'm not too good with ida tbh.
    aparently guided hacking has a little video series on it to atleast get you started
    LEEEEEEROY JEEEEENKINS

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] MW2 SP Console Unlocked - All dvars
    By ToolB0x in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 17
    Last Post: 09-17-2015, 02:36 AM
  2. [Release] BF4 Offset Dumper + Source [By SmallC)
    By DadDelta in forum Battlefield 4 Hacks & Cheats
    Replies: 3
    Last Post: 10-15-2014, 02:59 PM
  3. [Release] Y3t1yt's Offset Dumper V 1.3
    By foxxywoxxy in forum Counter-Strike 2 Hacks
    Replies: 7
    Last Post: 08-09-2014, 05:03 AM
  4. [Release] CS: GO offset dumper
    By foxxywoxxy in forum Counter-Strike 2 Hacks
    Replies: 7
    Last Post: 08-07-2014, 05:32 AM
  5. [Release]All dvars explanaiton.
    By GBot! in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 19
    Last Post: 07-27-2010, 06:16 PM