16.03.2018, 06:29
Tente ai
PHP код:
// Topo
new Minuto[MAX_PLAYERS];
// Comando para saber quando tempo falta
CMD:tempo(playerid)
{
new IGString[60];
format(IGString,60,"Falta exatamente %2d minuto(s) para o фnibus partir.", Minuto[playerid]);
if(Minuto[playerid] > 0) return SendClientMessage(playerid, -1, IGString);
return 1;
}
public OnPlayerEnterCheckpoint(playerid)
{
if(PUERTAE[playerid])
{
ApplyAnimation(playerid,"CASINO","Slot_Plyr",4,1,1,1,0,1000,1);
SendClientMessage(playerid,COLOR_VERDE,"Passegeiro entregue, o onibos partirar em 5 minutos.");
SetTimerEx("messageLS", 1000*60, false, "i", playerid);
Minuto[playerid] = 5;
DisablePlayerCheckpoint(playerid);
PUERTAE[playerid] = false;
}
if(PUERTAC[playerid])
{
ApplyAnimation(playerid,"CASINO","Slot_Plyr",4,1,1,1,0,1000,1);
SendClientMessage(playerid,COLOR_VERDE,"Has entregado el pasaje al recepcionista,Por favor espere hasta que llamen para subirse al bus");
SetTimer("EntregandoPasaje", 3000, false);
DisablePlayerCheckpoint(playerid);
PUERTAC[playerid] = false;
}
return 1;
}
public messageLS(playerid)
{
if(!ENTRAR[playerid])
{
PlayAudioStreamForPlayer(playerid,"https://dl.dropbox.com/s/160sllpah3dul9l/Sonido%20aviso%20planta%20tono-%20Efecto%20de%20sonido.mp3");
SendClientMessage(playerid,COLOR_VERDE,"Tu bus esta apunto de partir por favor acercate a la puerta de abordaje E");
ENTRAR[playerid] = true;
Minuto[playerid]--;
}
return 1;
}