27.04.2012, 16:18
Try this code now.
pawn Код:
public OnDialogResponse(playerid,dialogid,response,listitem,inputtext[])
{
new
Float:Pos[4]={-1969.3022, 309.2212, 34.9013},
ivModel,
ivPrice,
ivColors[2];
if(dialogid == DIALOG_CARBUY&& Total_Player_Vehicles[playerid]<= MAX_OWNABLE_VEH&& Total_Veh_Created < MAX_BUYABLE_VEH)
{
if(!response) return ShowPlayerDialog(playerid, -1, DIALOG_STYLE_LIST, "", "", "", "");
else
{
switch(listitem)
{
case 0:
{
ivModel = VEH1;
}
case 1:
{
ivModel = VEH2;
}
case 2:
{
ivModel = VEH3;
}
case 3:
{
ivModel = VEH4;
}
}
}
}
}