Hello i am obsedianpk...
well done, punkbuster just got me NEWB
they forced me to learn C++ so me and them can have better fights between hack and anti hack...
i need a bit help with C++
tried the tuts etc
but then there is this part :
Code:
EDIT:Forgot Functions
ok above the last bit of codeing add this for writelong function
(just add some space above your last bit of codeing)
Code:
void Writelong(long addy, long value)
{
memory();
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) addy, &value, sizeof(value), NULL);
}
void WritePointerFloat(long addy, short offset, float 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);
}
I get a error here...
error : C:\Program Files\Microsoft Visual Studio\MyProjects\bbbb\bbbbDlg.cpp(185) : error C2065: 'WriteLong' : undeclared identifier
HELP ME~!