27.06.2013, 17:25
I have this function:
Works perfectly fine on localhost but when i run the gamemode on my vps thats been up for a while (a few days) it says that I'm always spamming.
pawn Код:
IsPlayerSpamming(playerid)
{
if((tickcount() - Time[playerid]) > 1800) {
Time[playerid] = tickcount();
return 1;
} else return 0;
}