21.07.2016, 15:33
Hello, i tried to fix those errors today but i can't. I don't know why, by the way i'm not pro Scripter. i'm newbie i just learned scripting this month but i'm able to make some systems and maps , gamemodes. So listen.
Here is the code and here is the errors
LINE 1824 is the " ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COLOR_CRIMSON"Login",""COLOR_ CRIMSON"Type your password below to login.","Login","Quit");"
Here is the code and here is the errors
pawn Код:
C:\Users\infogenie\Desktop\Addictive Trainers V2.6\gamemodes\own.pwn(1824) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\infogenie\Desktop\Addictive Trainers V2.6\gamemodes\own.pwn(1824) : warning 215: expression has no effect
C:\Users\infogenie\Desktop\Addictive Trainers V2.6\gamemodes\own.pwn(1824) : error 001: expected token: ";", but found "-string-"
C:\Users\infogenie\Desktop\Addictive Trainers V2.6\gamemodes\own.pwn(1824) : warning 215: expression has no effect
C:\Users\infogenie\Desktop\Addictive Trainers V2.6\gamemodes\own.pwn(1824) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\infogenie\Desktop\Addictive Trainers V2.6\gamemodes\own.pwn(1824) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
pawn Код:
if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COLOR_CRIMSON"Login",""COLOR_CRIMSON"Type your password below to login.","Login","Quit");
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT,""COLOR_CRIMSON"Registering...",""COLOR_CRIMSON"Type your password below to register a new account.","Register","Quit");
}
return 1;
}
return 1;
}