09.01.2017, 22:53
PHP код:
new bool:coletevip[MAX_PLAYERS] = false;
if(!strcmp(cmd, "/coletevip", true ))
{
if( pInfo[ playerid ][ PLAYER_VIP ] == 1 )
{
if( coletevip[ playerid ] == true ) 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] = true;
SetTimerEx("DesbloquearColete", 300000, false, "i", playerid)
return 1;
}
else
{
//NovaBomba2[ playerid ] = 1;
SendClientMessage( playerid, COLOR_ERRO, "| ERRO | Vocк nгo tem permissгo ou estб na favela!" );
SetTimerEx( "NovaBomba2", 300000, false, "i", playerid );
}
return 1;
}
forward DesbloquearColete(playerid);
public DesbloquearColete(playerid)
{
coletevip[playerid] = false;
return 1;
}