04.08.2013, 13:54
Hey everyone.
Today I got help with my registration system by an awesome guy and when I he fixed a bit I tried to make a new dialog called origin where they can write in where they are from. But I got some strange issues and have no clue what it can be so I am asking you guys, can you see what's wrong here?
Errors:
Anyone?
Today I got help with my registration system by an awesome guy and when I he fixed a bit I tried to make a new dialog called origin where they can write in where they are from. But I got some strange issues and have no clue what it can be so I am asking you guys, can you see what's wrong here?
pawn Код:
case DIALOG_AGE:
{
if(!response || response == 2) return Kick(playerid);
else
{
new age = strval(inputtext);
if(age >= 18 && age <= 80)
{
PlayerInfo[playerid][pAge] = age;
LINE 1296: ShowPlayerDialog(playerid, DIALOG_ORIGIN, DIALOG_STYLE_INPUT, ""COLOR_GREY1"Origin Selection", "Please input your country of origin in the box below.",
}
LINE 1298: else ShowPlayerDialog(playerid, DIALOG_AGE, DIALOG_STYLE_INPUT, ""COLOR_GREY1"Age Selection", "Please input your desired character age in the box below.\n(18-80)", "Select", "Cancel");
}
}
case DIALOG_ORIGIN:
Quote:
(1296 -- 1297) : error 029: invalid expression, assumed zero (1296 -- 1298) : error 035: argument type mismatch (argument 6) (1298) : warning 217: loose indentation (1298) : error 029: invalid expression, assumed zero (1298) : fatal error 107: too many error messages on one line |