Originally Posted by Zombies12 How to compile an address which have a word into C++? Example: Blackshot.exe +0x015EB348 . Code: DWORD Blackshot; void hacks() { while(1) { Blackshot = (DWORD)GetModuleHandle("Blackshot.exe"); *(DWORD*)(Blackshot + 0x015EB348) = 1; } }
Originally Posted by Minerva Code: DWORD Blackshot; void hacks() { while(1) { Blackshot = (DWORD)GetModuleHandle("Blackshot.exe"); *(DWORD*)(Blackshot + 0x015EB348) = 1; } } Thanks...!