Imma Split this up into two parts because they relate to each other. im trying to get the ClientCMD offset for csgo so i can use it for writing console commands externally. Im using the public Source for Yetti's Dumper to accomplish this.
Part 1.
this is the code i added into the dumper to make it "work"
Code:
DumpPatternOffset( "Extra", "ClientCMD", "engine.dll",
"55 8B EC A1 ? ? ? ? 81 EC ? ? ? ? 80 B8",
Remote::SignatureType_t::READ | Remote::SignatureType_t::SUBTRACT, 0x1, 0x0, ss );
that is supposed to be the correct sig for the ClientCMD offset (cant remember where i found it, UC probably)
anyways, as of 8/2/2016 it returns
0xA7E4EC8B. VS also doesn't give errors or warnings if anyone was gonna ask.
Part 2.
so this part is simple, i need a way to execute a console command externally.
This is what i have (this should theoretically work with the correct offset, which according to the sig above is 0xA7E4EC8B) in my code ClientCMD = 0xA7E4EC8B
Code:
WPM(ClientDLL + ClientCMD, "say L33T H4CKS");
any help would be greatly appreciated