28.03.2011, 16:23
Ahh, it is possible but you will have to make different dialogs for:
You can make something like:
And OnDialogResponse, you`ll have to figure it out ...
- Name
- Car Model
- Car Color 1
- Car Color 2
- Car Location
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;
}
![Smiley](images/smilies/smile.png)