SA-MP Forums Archive
[Ajuda] Sistema pedagio - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Sistema pedagio (/showthread.php?tid=384011)



Sistema pedagio - netogba - 09.10.2012

Eu fiz um sistema pedagio bбsico mais... eu queria que ele sу mostrasse o dialog para quem estiver em um veiculo.
Код:
    if(CPS_IsPlayerInCheckpoint(playerid, checkpedagio))
    {
      format(string, sizeof(string), "Bem vindo ao pedagio deseja passar?", nome(playerid));
      ShowPlayerDialog(playerid, DIALOGID+17, DIALOG_STYLE_MSGBOX, "Pedagio", string, "Sim", "Nгo");
    }
tipo quando ele chegar nesse check point mostrar sу para a pessoa que estiver em um veiculo.


Re: Sistema pedagio - humildadeforever - 09.10.2012

pawn Код:
if(CPS_IsPlayerInCheckpoint(playerid, checkpedagio) && IsPlayerInAnyVehicle(playerid))
    {
      format(string, sizeof(string), "Bem vindo ao pedagio deseja passar?", nome(playerid));
      ShowPlayerDialog(playerid, DIALOGID+17, DIALOG_STYLE_MSGBOX, "Pedagio", string, "Sim", "Nгo");
    }



Re: Sistema pedagio - netogba - 09.10.2012

Quote:
Originally Posted by humildadeforever
Посмотреть сообщение
pawn Код:
if(CPS_IsPlayerInCheckpoint(playerid, checkpedagio) && IsPlayerInAnyVehicle(playerid))
    {
      format(string, sizeof(string), "Bem vindo ao pedagio deseja passar?", nome(playerid));
      ShowPlayerDialog(playerid, DIALOGID+17, DIALOG_STYLE_MSGBOX, "Pedagio", string, "Sim", "Nгo");
    }
Obrigado por me ajudar +REP.