Actually it's just underneath the enum.
pawn Код:
forward LoadUser_data(playerid,name[],value[]);
public LoadUser_data(playerid,name[],value[])
{
INI_String("Password",PlayerInfo[playerid][pPassword], 256);
INI_Int("Cash",PlayerInfo[playerid][pCash]);
INI_Int("VIP",PlayerInfo[playerid][pVIP]);
INI_Int("Age",PlayerInfo[playerid][pAge]);
INI_Int("Sex",PlayerInfo[playerid][pSex]);
INI_Int("Origin",PlayerInfo[playerid][pOrigin]);
INI_Int("Banned",PlayerInfo[playerid][pBanned]);
INI_Int("Warns",PlayerInfo[playerid][pWarns]);
INI_Int("Muted",PlayerInfo[playerid][pMuted]);
INI_Int("MuteTime",PlayerInfo[playerid][pMuteTime]);
INI_Int("Admin",PlayerInfo[playerid][pAdmin]);
INI_Int("Kills",PlayerInfo[playerid][pKills]);
INI_Int("Model",PlayerInfo[playerid][pModel]);
INI_Int("Level",PlayerInfo[playerid][pLevel]);
INI_Int("Experience",PlayerInfo[playerid][pExp]);
INI_Int("Faction",PlayerInfo[playerid][pFaction]);
INI_Int("Rank",PlayerInfo[playerid][pRank]);
INI_Int("Phonenumber",PlayerInfo[playerid][pNumber]);
INI_Int("Deaths",PlayerInfo[playerid][pDeaths]);
return 1;
}