21.02.2012, 21:40
Don't use a timer for something banal like this; add this at the top in the body of the command:
pawn Код:
static
lastReport[MAX_PLAYERS]; // note: static! That is very important
if((gettime() - lastReport[playerid]) < 60)
return SendClientMessage(playerid, COLOR_RED, "Please wait at least 60 seconds.");
lastReport[playerid] = gettime();