18.05.2012, 20:52
pawn Code:
if (strcmp("/parmas", cmdtext, true, 10) == 0)
{
if(Team[playerid] == survivor && usouComando[playerid] == 0)
{
if(GetPlayerInterior(playerid) != 0)
{
InInterior[playerid] = random(3);
new Float:vida;
GetPlayerHealth(playerid, vida);
if(InInterior[playerid] == 0/* || InInterior[playerid] == 1*/)
{
GameTextForPlayer(playerid, "~r~Nada foi encontrado.",3000,5);
SendClientMessage(playerid, vermelho, "{FF0000}[S4D]{F5F5F5}: Nada foi encontrado.");
}
else if(InInterior[playerid] == 1 || InInterior[playerid] == 2)
{
new randArma[MAX_PLAYERS];
randArma[playerid] = random(8);
ProcurarArma(playerid, randArma[playerid]);
}
usouComando[playerid] = 1;
SetTimerEx("LiberarComandoProcurar",120000, false,"i",playerid);
}
}
else if(Team[playerid] == survivor && usouComando[playerid] == 1)
{
SendClientMessage(playerid, vermelho, "{FF0000}[S4D]{F5F5F5} ERRO: Vocк sу pode usar comandos de procura a cada 2 minutos!");
}
return 1;
}