is this possible to make in dialog?
#2

Ahh, it is possible but you will have to make different dialogs for:
  • Name
  • Car Model
  • Car Color 1
  • Car Color 2
  • Car Location
Now, you must think about car location... I mean, you want players to write: "Vinewood" for example and you`ll create them a vehicle somewhere in Vinewood? Or you want players to insert the exact coordinates?

You can make something like:

pawn Код:
#define CAR_DIALOG 2300 // Dialog ID ... you might want to change it if you already have a 2300 dialog ID.

CMD:requestcar(playerid, params[])
{
      ShowPlayerDialog(playerid, CAR_DIALOG, DIALOG_STYLE_INPUT, "Car request", "Insert your name here:",   "Continue", "Exit");
      return 1;
}
And OnDialogResponse, you`ll have to figure it out ...
Reply


Messages In This Thread
is this possible to make in dialog? - by GBLTeam - 28.03.2011, 16:00
Re: is this possible to make in dialog? - by antonio112 - 28.03.2011, 16:23
Re: is this possible to make in dialog? - by GBLTeam - 28.03.2011, 16:47
Re: is this possible to make in dialog? - by antonio112 - 28.03.2011, 16:51
Re: is this possible to make in dialog? - by GBLTeam - 28.03.2011, 16:57
Re: is this possible to make in dialog? - by GBLTeam - 28.03.2011, 18:00
Re: is this possible to make in dialog? - by gamer931215 - 28.03.2011, 20:58
Re: is this possible to make in dialog? - by airsoft - 28.03.2011, 21:29
Re: is this possible to make in dialog? - by GBLTeam - 28.03.2011, 22:34
Re: is this possible to make in dialog? - by airsoft - 29.03.2011, 01:12

Forum Jump:


Users browsing this thread: 1 Guest(s)