03.04.2016, 10:37
(
Последний раз редактировалось iCurse; 03.04.2016 в 10:37.
Причина: Help
)
PHP код:
C:\Users\PC\Desktop\LGRP\gamemodes\LGRP.pwn(131) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\PC\Desktop\LGRP\gamemodes\LGRP.pwn(131) : warning 215: expression has no effect
C:\Users\PC\Desktop\LGRP\gamemodes\LGRP.pwn(131) : error 001: expected token: ";", but found "-string-"
C:\Users\PC\Desktop\LGRP\gamemodes\LGRP.pwn(131) : warning 215: expression has no effect
C:\Users\PC\Desktop\LGRP\gamemodes\LGRP.pwn(131) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\PC\Desktop\LGRP\gamemodes\LGRP.pwn(131) : fatal error 107: too many error messages on one line
PHP код:
public OnPlayerConnect(playerid)
{
if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""COLOR_GREY"Login", ""COLOR_GREY"Type your password below.")
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT,""COLOR_GREY"Registering...", ""COLOR_GREY"Type your password below.")
}
return 1;
}
PHP код:
#define DIALOG_REGISTER 1
#define DIALOG_LOGIN 2
#define DIALOG_SUCCESS_1 3
#define DIALOG_SUCCESS_2 4
#define PATH "Users\%s.ini"