18.09.2013, 05:40
Intenta:
Dices "luchando" como si fuese una guerra lol
pawn Код:
case SEdad:
{
if(!strlen(inputtext)) return ShowPlayerDialog(playerid, SEdad, DIALOG_STYLE_INPUT, "{DD0000}Edad", "{FFFFFF}Por favor, introduza un nъmero entre 18 y 80", "Seleccionar", "");
if(!IsNumeric(inputtext)) return ShowPlayerDialog(playerid, SEdad, DIALOG_STYLE_INPUT, "{DD0000}Edad", "{FFFFFF}Escriba solo el nъmero, su Edad:", "Seleccionar", "");
if(strval(inputtext) < 18 || strval(inputtext) > 80) return ShowPlayerDialog(playerid, SEdad, DIALOG_STYLE_INPUT, "{DD0000}Edad", "{FFFFFF}Mбximo {DD0000}80, {FFFFFF}mнnimo {DD0000}18", "Seleccionar", "");
Informacion[playerid][Edad] = strval(inputtext);
ShowPlayerDialog(playerid, Dialog_Tutorial, DIALOG_STYLE_MSGBOX, "{DD0000}Fin del Registro","{FFFFFF}Has terminado el registro exitosamente\n\n{FFFFFF}Ahora, verб un pequeсo tutorial sobre este modo de juego", "Aceptar", "");
}