no spread and player pointer and addylogger
who can help me with turn no spread off and find a playerpointer and a addy logger
i have this with turn no spread off
void spread()
{
if(GetAsyncKeyState(VK_NUMPAD9) &1)
{
*(float*)OFS_NOSPREAD = 0;
}
}
who can help me pers i thnx
NoSpread will automaticcaly turn off, that's why your code has to be like this:
int Spread = 0;
void spread()
{
if(GetAsyncKeyState(VK_NUMPAD9) )
{
if(Spread)
{
Spread = 0;
}
else
{
Spread = 1;
}
if(Spread)
{
*(float*)OFS_NOSPREAD = 0;
}
}