02.03.2013, 14:24
I followed a login system tutorial but I get many errors
Here are the errors
and here is the code
Here are the errors
PHP код:
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(201) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(201) : warning 215: expression has no effect
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(201) : error 001: expected token: ";", but found "-string-"
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(201) : warning 215: expression has no effect
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(201) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(201) : 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.
PHP код:
public OnPlayerConnect(playerid)
{
pTazed[playerid] = 0;
pTazer[playerid] = 0;
{
if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_data", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""WHITE"Login",""WHITE"Type your password below to login.","Login","Quit");
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD,""WHITE"Registering...",""WHITE"Type your password below to register a new account.","Register","Quit");
}
return 1;
}