04.02.2014, 16:14
You are doing it wrong i think?Try like this:
Код:
enum pInfo
{
pColor,
pAccent[70]
}
new PlayerInfo[MAX_PLAYERS][pInfo];// Stores the player data
//This is were the error occurs below on 'PlayerInfo[playerid][pAccent]
public LoadUser_data(playerid,name[],value[])
{
INI_Int("Color",PlayerInfo[playerid][pColor]);
INI_String("Accent",PlayerInfo[playerid][pAccent], 70);
return 1;
}

