09.01.2017, 21:54
Sem o uso de Set Timer.
PHP код:
if (!strcmp(cmd, "/coletevip", true ))
{
if (pInfo[playerid][PLAYER_VIP] == 1)
{
if (coletevip[playerid] >= gettime())
return SendClientMessage(playerid, COLOR_ERRO, "| ERRO | Espere um pouco para colocar colete denovo. 5 Min");
SetPlayerArmour(playerid, 100);
SendClientMessage(playerid, 0xFFFFE0FF, "| COLETE | Seu colete foi criado com sucesso!");
coletevip[playerid] = gettime() + 300; // 5 minutos em segundos
return 1;
}
else
{
SendClientMessage( playerid, COLOR_ERRO, "| ERRO | Vocк nгo tem permissгo ou estб na favela!" );
return 1;
}
}