Introducing MPGH's AIGA. The latest advancement in artificial intelligence. Click here now to learn more!
Page 2 of 2 FirstFirst 12
Results 16 to 21 of 21
  1. #16
    ancient1969's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    0
    dude that is dope bro will try maybe tomorrow

  2. #17
    Kurzo's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    4
    Thanks a lottt

  3. #18
    _LYNX's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Location
    North Korea
    Posts
    47
    Reputation
    10
    Thanks
    197
    My Mood
    Lurking
    nice, I like it but dont play cod too much

  4. #19
    Oblivien2's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Location
    Viersen
    Posts
    41
    Reputation
    10
    Thanks
    856
    My Mood
    Bored
    thanks for this silent
    Last edited by Silent; 03-24-2018 at 09:25 AM.

  5. #20
    Khaiii's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    1
    thanks for this silent, appreciate it!
    Last edited by Silent; 03-24-2018 at 09:25 AM.

  6. The Following User Says Thank You to Khaiii For This Useful Post:

    Silent (02-27-2018)

  7. #21
    spanqe's Avatar
    Join Date
    Dec 2017
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Silent View Post
    Hey all, Just fixed my dvar dumper, It's a lot better then what it was before.

    New features:
    - Reads dvar string length.(main new feature)
    - New memory class
    - fully re-coded

    Supported games:
    No Game
    MW3 - MP
    MW2 - MP
    BlackOps - MP
    BlackOps II - MP
    MW1 - MP
    WAW - MP
    MW3 - SP
    MW2 - SP
    BlackOps - SP
    BlackOps II - SP
    BlackOps II - ZM
    WAW - SP

    For nerds:
     
    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Diagnostics;
    using System.Drawing;
    using System****;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    
    namespace New_dvar_dumper
    {
        public partial class FormMain : Form
        {
            public FormMain()
            {
                InitializeComponent();
    
                games = new Game[]
                {
                    new Game { name = "No Game",  processName = "...", dvarBase = 0, dvarSize = 0, pointerToAddress = 0 },
                    new Game { name = "MW3 - MP",  processName = "iw5mp", dvarBase = 0x59CDE00, dvarSize = 76, pointerToAddress = 12 },
                    new Game { name = "MW2 - MP",  processName = "iw4mp", dvarBase = 0x63813F0, dvarSize = 76, pointerToAddress = 12 },
                    new Game { name = "BlackOps - MP",  processName = "BlackOpsMP", dvarBase = 0x3860E90, dvarSize = 112, pointerToAddress = 0x18 },
                    new Game { name = "BlackOps II - MP",  processName = "t6mp", dvarBase = 0x2A1FC48, dvarSize = 96, pointerToAddress = 0x18 },
                    new Game { name = "MW1 - MP",  processName = "iw3mp", dvarBase = 0xCBAB808, dvarSize = 76, pointerToAddress = 12 },
                    new Game { name = "WAW - MP",  processName = "CoDWaWmp", dvarBase = 0xF3F3F70, dvarSize = 92, pointerToAddress = 16 },
                    new Game { name = "MW3 - SP",  processName = "iw5sp", dvarBase = 0x1C473C0, dvarSize = 76, pointerToAddress = 12 },
                    new Game { name = "MW2 - SP",  processName = "iw4sp", dvarBase = 0x196AA90, dvarSize = 80, pointerToAddress = 12 },
                    new Game { name = "BlackOps - SP",  processName = "BlackOps", dvarBase = 0x2621BF0, dvarSize = 112, pointerToAddress = 0x18 },
                    new Game { name = "BlackOps II - SP",  processName = "t6sp", dvarBase = 0x2A41B10, dvarSize = 96, pointerToAddress = 0x18 },
                    new Game { name = "BlackOps II - ZM",  processName = "t6zm", dvarBase = 0x29F5548, dvarSize = 96, pointerToAddress = 0x18 },
                    new Game { name = "WAW - SP",  processName = "CoDWaW", dvarBase = 0x21B1348, dvarSize = 92, pointerToAddress = 16 },
                };
            }
    
            static Memory memory = new Memory();
            static Game[] games;
            int gameFound = 0;
    
            private struct Game
            {
                public string processName;
                public string name;
                public int dvarBase;
                public int dvarSize;
                public int pointerToAddress;
            }
    
            private void timerGameCheck_Tick(object sender, EventArgs e)
            {
                for (int i = 0; i < games.Length; i++)
                {
                    Process[] processes = Process.GetProcessesByName(games[i].processName);
                    if (processes.Length != 0)
                    {
                        gameFound = i;
                        labelFoundGame.Text = games[i].name;
                    }
                }
            }
    
            private void buttonDump_Click(object sender, EventArgs e)
            {
                textDumped.Text = null;
                if(!memory.Open_pHandel(games[gameFound].processName))
                {
                    MessageBox.Show("Game not found!");
                    return;
                }
    
                bool containIndex = checkContainIndex.Checked;
                bool containDebugInfo = checkHaveDebugInfo.Checked;
                int startTime = Environment.TickCount;
                textDumped.Text += (containIndex ? "Index | " : "") + "Name | Address\r\n\r\n";
    
                for (int i = 0; i <= 4096; i++)
                {
                    int tempBase = games[gameFound].dvarBase + (games[gameFound].dvarSize * i);
    
                    string name = memory.ReadStringAdvanced(memory.ReadInt(tempBase), 32);
                    int address = tempBase + games[gameFound].pointerToAddress;
    
                    if (name == null || address == 0)
                        break;//I would do continue, But either way works.
    
                    textDumped.Text += (containIndex ? i.ToString() + " - " : "") + name + " - 0x" + address.ToString("X") + "\r\n";
                }
    
                if(containDebugInfo)
                {
                    int timeTaken = Environment.TickCount - startTime;
                    textDumped.Text += "\r\nDebugInformation\r\n\r\nTime taken: " + timeTaken.ToString() + "ms(" + (timeTaken / 1000).ToString() + "seconds)\r\n";
                }
            }
    
            private void buttonSave_Click(object sender, EventArgs e)
            {
                if (gameFound != 0)
                    File.WriteAllText(Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\\" + games[gameFound].name + " dvar dump.txt", textDumped.Text);
            }
        }
    }


    Virus scans:
    https://www.virustotal.com/en/file/f...is/1492930374/
    https://virusscan.jotti.org/en-US/fi...job/te7ts02f1f



    Tnx for sharing

Page 2 of 2 FirstFirst 12

Similar Threads

  1. New battleye update messing my game up?
    By Glxi in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 7
    Last Post: 10-07-2012, 08:07 AM
  2. [Solved] z8 games...support ticket? IM MAD
    By JimTheGreat in forum CrossFire Help
    Replies: 21
    Last Post: 03-13-2012, 09:17 PM
  3. [Discussion] [NOTICE] Updated: Regarding Current Game Server Shutdown
    By m0k1 in forum Combat Arms EU Discussions
    Replies: 0
    Last Post: 11-02-2011, 11:15 AM
  4. [Solved] The game supports 64-bit Windows XP Service Pack 2?
    By sasuke133 in forum CrossFire Help
    Replies: 6
    Last Post: 09-09-2011, 04:30 PM
  5. [Discussion] z8 games support
    By tiyan in forum CrossFire Discussions
    Replies: 5
    Last Post: 08-03-2011, 05:26 PM