05.02.2012, 21:37
Hello, I have been getting a few problems with OnPlayerConnect not being called, Why is this?
Is there an error with the following code? This error is really getting on my nerves.
Is there an error with the following code? This error is really getting on my nerves.
pawn Код:
public OnPlayerConnect(playerid)
{
gPlayerLogged[playerid] == 0;
TogglePlayerControllable(playerid,0);
if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_WHITE"Type your password below to login.","Login","Quit");
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT,""COL_WHITE"Registering...",""COL_WHITE"Type your password below to register a new account.","Register","Quit");
}
return 1;
}