Hey Guys,
I have a nice question for ya.
I want to get the "Playerbaseaddress" for myself so i have writen my patternscanner to get the Playerbase.
but it wont work. Maybe you could take a look and help me to get it work.
Code:unsigned GetPlayerBase(HANDLE PID) { int Base = 0x01A12000; int LifeOffset = 0x000012d8; int Leben = 100; int Wert = 0; int Schritt = 0x1000; bool gefunden = false; Base = Base + 0x2 *4 + 0x12D8; while(Wert != Leben) { ReadProcessMemory(PID,(LPVOID)Base,&Wert,sizeof(Wert),0); Base = Base += Schritt; cout << Base << endl; } return (Base); }
Its German I hope it isn“t a problem.