13.10.2016, 14:18
PHP код:
new Healstop; //on top of script
CMD:heal(playerid, params[])//your command here
{
if(Healstop > gettime())
{
SendClientMessage(playerid, -1 ,"You need to wait 1 minute before using /heal again");
}
else
{
//your code here
Healstop = gettime() + 60;
}
return 1;
}

