Results 1 to 3 of 3
  1. #1
    MaxSvett's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    888
    My Mood
    Angelic

    .NET Game Hacking Dll

    Out of boredom I decided to make a Game Hacking Dll that I can use in my own projects, but since it might become handy for others I'm posting it here.

    It's basically a .NET wrapper for some commonly used WinAPI functions associated with game hacking and works for all .NET based languages (C#, Visual Basic, etc).

    I've only worked on this for a couple of days so I might add more functionality later.
    Btw if you want source code just message me.

    One feature that I like is that the library makes it much easier to work with multilevel pointers.
    Below is an example of how you access a multilevel pointer in C# with this library.
    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using GameHackingLib;
    
    namespace C_Sharp_Empty_Forms
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
            }
    
            private void button_Click(object sender, EventArgs e)
            {
                ProcessMemory pm = new ProcessMemory("Call of Duty®: Black Ops II - Zombies");
                // This is just an example, not a real address btw
                uint address = pm.FindMultiLvlPtrAddr(new MultiLvlPtr(0xD41318, 0xFB0, 0x32F, 0x352));
                
                int value = pm.ReadInt32(address);
    
                MessageBox.Show("value: " + value);
            }
        }
    }
    You can also write this:
    Code:
    // Title of window
    new ProcessMemory("Call of Duty®: Black Ops II - Zombies");
    Like this:
    Code:
    // Process name
    new ProcessMemory(ProcessMemory.GetWindowHandleByProcessName("t6zm"));

    <b>Downloadable Files</b> Downloadable Files

  2. The Following 13 Users Say Thank You to MaxSvett For This Useful Post:

    LolGTheBro (12-27-2012),mikkel91997 (01-12-2013),mykybo (12-19-2012),pumba2013 (01-14-2013),RedVendetta (12-23-2012),Saiito (12-20-2012),SLiiTH3R (01-11-2013),sullydude (12-18-2012),svilpa55 (05-01-2013),TheCjetplaneHD (12-23-2012),yoguh (01-11-2013),yongzhao43 (12-23-2012),zircos (10-21-2013)

  3. #2
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    /Approved .
    Last edited by MarkHC; 12-18-2012 at 02:07 PM.


    CoD Minion from 09/19/2012 to 01/10/2013

  4. #3
    uppadharmai's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    respectz for the info

Similar Threads

  1. What would you look for in a game hacking tool kit?
    By Dave84311 in forum General Game Hacking
    Replies: 23
    Last Post: 06-02-2015, 06:34 AM
  2. Multiplayer Gaming Hacking .Net ChatBOX
    By [GameMaster] in forum Art & Graphic Design
    Replies: 2
    Last Post: 10-17-2010, 12:04 PM
  3. [Question] DLL Game Hack Programing
    By Cyb3rDev1L in forum C++/C Programming
    Replies: 10
    Last Post: 12-25-2009, 12:27 AM
  4. Hack works for 1 game and dll problem
    By Chicco in forum Combat Arms Hacks & Cheats
    Replies: 22
    Last Post: 05-23-2009, 12:51 AM
  5. Game Hacking IMPOSSIBLE IN VISTA?
    By Dave84311 in forum General Game Hacking
    Replies: 13
    Last Post: 01-09-2006, 08:58 PM

Tags for this Thread