[AJUDA] Dialog Alugar - 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] Dialog Alugar (
/showthread.php?tid=288045)
[AJUDA] Dialog Alugar -
RedBulL_x - 06.10.2011
Queria que aparce a opзгo de alugar carro quando entra em um veiculo que esta pra alugar em dialog Entгo fiz isso
pawn Код:
ShowPlayerDialog(playerid, DialogAlugar, DIALOG_STYLE_MSGBOX, "Brasil FanatiCs Games", "Voce pode alugar esse carro Custo:$%d deseja alugar ?", "Sim", "Nгo",SBizzInfo[1][sbEntranceCost]);
Na public OnDialogResponse
if(dialogid == DialogAlugar)//identifica o id do dialog.
{
if(response)//Caso ele clique no primeiro botгo
{
OnPlayerCommandText(playerid,"/alugarcarro");
}
else //caso ele click no segundo botгo
{
SendClientMessage(playerid, COR_PM, "Vocк optou por nгo alugar. !");
RemovePlayerFromVehicle(playerid);
}
}
E estou com uma warning "warning 202: number of arguments does not match definition". na seguinte linha \/
pawn Код:
ShowPlayerDialog(playerid, DialogAlugar, DIALOG_STYLE_MSGBOX, "Brasil FanatiCs Games", "Voce pode alugar esse carro Custo:$%d deseja alugar ?", "Sim", "Nгo",SBizzInfo[1][sbEntranceCost]);
oque tem de errado ai galкra, Quem ajudar ganha reput
Re: [AJUDA] Dialog Alugar -
Pharrel - 06.10.2011
Vocк tem que formatar a string fora da dialog...
pawn Код:
new Pharrel[58];
format(Pharrel, 58,"Voce pode alugar esse carro Custo:$%d deseja alugar ?",SBizzInfo[1][sbEntranceCost]);
ShowPlayerDialog(playerid, DialogAlugar, DIALOG_STYLE_MSGBOX, "Brasil FanatiCs Games", Pharrel, "Sim", "Nгo");
poe tudo isso no lugar da linha q deu erro.
AW: [AJUDA] Dialog Alugar -
RedBulL_x - 06.10.2011
kkkkkkkkkkk' Eu tava definindo a Strign dentro da Dialog, Vllw ae mano ganho Reput *--*
Re: [AJUDA] Dialog Alugar -
Pharrel - 06.10.2011
Obrigado
@edit tinha ficado um erro lб ja arrumei