SA-MP Forums Archive
Comando /tiempo - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Comando /tiempo (/showthread.php?tid=651169)



Comando /tiempo - uardo12 - 15.03.2018

Buenas quisiera saber como utilizar la variable Settimer para realizar el comando /tiempo y detecte al jugador el tiempo restante de espera despuйs de entrar al CheckPoint. Gracias espero que me ayuden
Код:
public OnPlayerEnterCheckpoint(playerid)
{
    if(PUERTAE[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("messageLS", 1000, false);
   		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;
 }
    return 1;
}