Ich habe mal einen NoMenü Hack gecodet. Funktioniert auch alles weitgehend, bis auf No Spread. Ich habe es versucht auf Hotkeys zu setzen (Numpad_5 für an und Numpad_6 für aus), jedoch funktioniert das nicht.
Hier mal der Code:
Hier mal der Code:
Quote:
//Spread
{
if(GetAsyncKeyState(VK_NUMPAD5) &1)
*(float*)(Nospread) = 0;
}
if(GetAsyncKeyState(VK_NUMPAD6) &1)
{
*(float*)(Nospread) = 4;
}
}