25.07.2013, 11:43
Teste isso aqui:
PHP Code:
forward bloquearcomando(playerid);
new allowcmd[MAX_PLAYERS];
CMD:lol(playerid, params[])
{
if(allowcmd[playerid] == 1)
{
// comando aqui
SetTimer("bloquearcomando", 1000, false); // mude o 1000 para o tempo que quiser [ 1000 - 1 segundo ]
allowcmd[playerid] == 0;
}
else if(allowcmd[playerid] == 0)
{
SendClientMessage(playerid, cor, "Ainda nгo podes usar o comando!");
}
return 1;
}
public bloquearcomando(playerid)
{
allowcmd[playerid] == 1;
return 1;
}