21.11.2016, 12:11
PHP код:
new gifttimer[MAX_PLAYERS]; //on top of script
PHP код:
CMD:gift(playerid,params)
{
//code
if(gifttimer[playerid] > gettime()) return SendClientMessage(playerid,COLOR_YELLOW,"You need to wait for 1 day to use this command again");
gifttimer[playerid] = gettime()+86400;
return 1;
}