Home

Awesome

CS:GO Cheat Library

Introduction

This is a collection of cheats for the video-game Counter-Strike: Global Offensive.<br /> These cheats were coded as part of a YouTube series.

Code Samples

Gaining access to the CSGO application<br /> The window is stored HWND hwnd = FindWindowA(NULL, "Counter-Strike: Global Offensive");<br /> The process ID is retrieved GetWindowThreadProcessId(hwnd, &procId);<br /> A handle is is created HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, NULL, procId);

How to read and write process memory <br /> How to read process memory: RPM<variable type>(address + offsets); <br /> Example: RPM<int>(0xD30B94 + 0x4); <br />

How to write process memory: WPM<variable type>(address + offsets, newValue); <br /> Example: int value = 999; WPM<int>(0xD30B94 + 0x4, value);

Installation

Update the addresses and offsets. I reccomend using Hazedumper for this. <br /> Set the character set to Multi-Byte.<br /> Build the application as x86 and run as an administrator.<br /> Error trouble shooting<br /> If you are having issues compiling check out the faq for common issues I've seen!<br />

Contributions