@Crasy
Wenn du es mit 99 machst Funktioniert es auch im Zombie Modus!
WTW MEMORY SOURCE:
Bitte gebt credits zu NikM, ich trage vielleicht nur 0.5% Credits wegen der umwandlung von Numpad in die normale W,A,S,D steuerung!
Have FUN
Wenn du es mit 99 machst Funktioniert es auch im Zombie Modus!
WTW MEMORY SOURCE:
Code:
#define ADR_PLAYERPOINTER 0x9E27B0//Updated 01.09
#define OFS_Y 0x102F0//Updated 01.09
#define OFS_X 0x102E0//Updated 01.09
if(MEMWTW)//Memory
{
if( GetAsyncKeyState('D')&1 )
{
*(float*)(Playerx+OFS_X) = (*(float*)(Playerx+OFS_X) +10);
}
if( GetAsyncKeyState('A')&1 )
{
*(float*)(Playerx+OFS_X) = (*(float*)(Playerx+OFS_X) -10);
}
if( GetAsyncKeyState('W')&1 )
{
*(float*)(Playerx+OFS_Y) = (*(float*)(Playerx+OFS_Y) +10);
}
if( GetAsyncKeyState('S')&1 )
{
*(float*)(Playerx+OFS_Y) = (*(float*)(Playerx+OFS_Y) -10);
}
}
//Source: NikM
//Addys: UnknownPK
//Umwandlung: TradEmArk™
Have FUN