09.03.2012, 00:22
pawn Код:
case DIALOG_AGE:
{
if(response)
{
PlayerInfo[playerid][pAge] = strval(inputtext);
new string[64];
format(string, sizeof(string),"[Server]: So you are %s years old.", inputtext);
SendClientMessage(playerid, COLOR_ORANGE, string);
ShowPlayerDialog(playerid,DIALOG_SEX,DIALOG_STYLE_INPUT,"Gender Selection","You are a male or a female?","Done","Leave");
}
}
Hi, I'd like to do the same thing with gender using DIALOG_STYLE_MSGBOX, how am i suposed to write in the .ini file by example male if they choose male or female if they choose female ?