PDA

View Full Version : Function Weapon Hack?



wazofski
03-24-2008, 02:11 PM
What is the function of a weapon hack?

Writelong?
Writepointerfloat?
or something else that I dont have?

spartacchio
03-24-2008, 02:17 PM
What is the function of a weapon hack?

Writelong?
Writepointerfloat?
or something else that I dont have?

WritePointerLong

ganglyman21
03-24-2008, 03:17 PM
void WritePointerLong(long addy, short offset, long value)
{
long maddy;
long saddy;
memory();
ReadProcessMemory(hProcess, (LPVOID*)(DWORD) addy, &maddy, sizeof(maddy), NULL);
saddy = maddy + offset;
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) saddy, &value, sizeof(value), NULL);
}



In case you haven't found it.