04.08.2011, 11:08
I was making an Dialog login and registration system but i got a error.See
the lines are
Код:
C:\Users\PART\Desktop\Desktop\samp03csvr_R2-2_win32\filterscripts\test.pwn(112) : error 036: empty statement C:\Users\PART\Desktop\Desktop\samp03csvr_R2-2_win32\filterscripts\test.pwn(116) : error 017: undefined symbol "dini_Inset"
Код:
public OnPlayerDisconnect(playerid, reason)
{
new name[MAX_PLAYER_NAME], file[256];
GetPlayerName(playerid, name, sizeof(name));
format(file, sizeof(file), SERVER_USER_FILE, name);
if(gPlayerLogged[playerid] == 1);
{
dini_IntSet(file, "Score", PInfo[playerid][pScore]);
dini_IntSet(file, "Money", PInfo[playerid][pMoney]);
dini_Inset(file, "AdminLevel", PInfo[playerid][pAdminLevel]);
}
gPlayerLogged[playerid] = 0;
return 1;
}


