23.10.2014, 04:18
Try this
PHP код:
public LoadUser_data(playerid,name[],value[])
{
INI_String("Password",PlayerInfo[playerid][pPass], 129);
INI_Int("Cash",PlayerInfo[playerid][pCash]);
INI_Int("Admin Level",PlayerInfo[playerid][pAdmin]);
INI_Int("Kills",PlayerInfo[playerid][pKills]);
INI_Int("Deaths",PlayerInfo[playerid][pDeaths]);
INI_Int("Score",PlayerInfo[playerid][pScore]);
INI_Int("IsJailed",PlayerInfo[playerid][pJailed]);
INI_Int("IsBanned",PlayerInfo[playerid][pBanned]);
INI_Int("Warnings",PlayerInfo[playerid][pWarn]);
INI_Int("SecondPass",PlayerInfo[playerid][pSPass]);
INI_String("Mail",PlayerInfo[playerid][pMail]), 300); // This Line Errors LINE 281
return 1;
}