01.12.2016, 19:19
helloo
i have this function to give players moeny
PInfo[playerid][Money];
and this is my current anticheat but not working
i also need to make it bannable
how to do it ??
i have this function to give players moeny
PInfo[playerid][Money];
and this is my current anticheat but not working
PHP код:
public RandomTimer()
{
for(new i; i<MAX_PLAYERS; i++)
{
if(GetPlayerMoney(i) != PInfo[i][Money])//Money/Cash anti-cheat
{
ResetPlayerMoney(i);
GivePlayerMoney(i,PInfo[i][Money]);
}
}
}
how to do it ??