15.01.2012, 01:05
pawn Код:
switch(dialogid)
{
case 5:
{
if(response)
{
switch(listitem)
{
case 0: ShowPlayerDialog(playerid, 6, DIALOG_STYLE_INPUT, "Age","Please enter your desired age below!","Select","Back");
case 1: ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Height","Please enter your desired height below!","Select","Back");
case 2: ShowPlayerDialog(playerid, 8, DIALOG_STYLE_INPUT, "Weight","Please enter your desired weight below!","Select","Back");
case 3: ShowPlayerDialog(playerid, 9, DIALOG_STYLE_INPUT, "Hair","Please enter your desired hair color below!","Select","Back");
case 4: ShowPlayerDialog(playerid, 10, DIALOG_STYLE_INPUT, "Eyes","Please enter your desired eye color below!","Select","Back");
case 5: ShowPlayerDialog(playerid, 11, DIALOG_STYLE_INPUT, "Complexion","Please enter your desired skin tone! (I.E. Black)","Select","Back");
case 6: ShowPlayerDialog(playerid, 12, DIALOG_STYLE_INPUT, "Gender","Please enter your desired gender!","Select","Back");
case 7: ShowPlayerDialog(playerid, 13, DIALOG_STYLE_INPUT, "Origin","Please enter your desired origin","Select","Back");
case 8: ShowPlayerDialog(playerid, 14, DIALOG_STYLE_INPUT, "Scars/Birthmarks","Please enter any desired scars or birthmarks","Select","Back");
case 9: ShowPlayerDialog(playerid, 15, DIALOG_STYLE_INPUT, "Accent","Please enter your desired accent!","Select","Back");
case 10: ShowPlayerDialog(playerid, 16, DIALOG_STYLE_INPUT, "Build","Please enter your desired body status!","Select","Back");
}
}
else
{
SendClientMessage(playerid, 0xFF0006FF, "Your options have been saved!");
}
}
}