04.09.2012, 14:17
made this quirckly, it should work.
pawn Код:
new timeforuse[MAX_PLAYERS];
public OnPlayerText(playerid, text[])
{
if(timeforuse[playerid] > gettime()) return SendClientMessage(playerid,-1,"You must wait 4 secongs to chat again");
timeforuse[playerid] = gettime() + 4;
return 1;
}