if(dialogid == DIALOG_REGAGE)
{
if(response)
{
format(input, sizeof(input), "%d", inputtext);
if(!IsNumeric(inputtext)) return ShowPlayerDialog(playerid, DIALOG_REGAGE, 1, "Registration Step 2:", "How old are you ?", "Next", "");
if(strval(inputtext) >= 7 || strval(inputtext) <= 50)
{
new age = strval(inputtext);
PlayerInfo[playerid][pAge] = age;
format(string, sizeof(string), "Ok, so you have %d years.", age);
SendClientMessage(playerid, COLOR_YELLOW2, string);
ShowPlayerDialog(playerid, DIALOG_REGSPAWN, 2, "Where do you want to be spawned ?", "Los Santos\nSan Fierro\nLas Venturas", "Select", "");
}
else
{
SendClientMessage(playerid, COLOR_YELLOW2, "Type numbers betwen 7 and 50.");
ShowPlayerDialog(playerid, DIALOG_REGAGE, 1, "Registration Step 2:", "How old are you ?", "Next", "");
}
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGAGE, 1, "Registration Step 2:", "How old are you ?", "Next", "");
}
return 1;
}
new age;
if(sscanf(inputtext, "d", age)) // checks if integer, or if any text is there.
if(age < min_age_here || age > max_age_here) // if they enter a number above / below.
//alternatively.
if(age >= min_age_here && age <= max_age_here)
{
//if they enter it in between min age / max age
}
if(dialogid == DIALOG_REGAGE)
{
if(response)
{
new age = strval(inputtext);
if(sscanf(inputtext, "d", age))
{
if(!IsNumeric(inputtext)) return ShowPlayerDialog(playerid, DIALOG_REGAGE, 1, "Registration Step 2:", "How old are you ?", "Next", "");
if(age >= 7 || age <= 50)
{
PlayerInfo[playerid][pAge] = age;
format(string, sizeof(string), "Ok, so you have %d years.", age);
SendClientMessage(playerid, COLOR_YELLOW2, string);
ShowPlayerDialog(playerid, DIALOG_REGSPAWN, 2, "Where do you want to be spawned ?", "Los Santos\nSan Fierro\nLas Venturas", "Select", "");
}
else
{
SendClientMessage(playerid, COLOR_YELLOW2, "Type numbers betwen 5 and 50.");
ShowPlayerDialog(playerid, DIALOG_REGAGE, 1, "Registration Step 2:", "How old are you ?", "Next", "");
}
} else ShowPlayerDialog(playerid, DIALOG_REGAGE, 1, "Registration Step 2:", "How old are you ?", "Next", "");
} else ShowPlayerDialog(playerid, DIALOG_REGAGE, 1, "Registration Step 2:", "How old are you ?", "Next", "");
return 1;
}
if(!strval(inputtext)) return SendClientMessage(playerid,-1,"Please write your age"");
PHP код:
|