08.08.2011, 10:42
Well there's your problem, how can you expect an integer to hold an array of characters? You need at least a 7 cell array to hold the data you're assigning to it, so you need to initialize it in the enumerator like so:
pawn Код:
enum pInfo
{
pAdminLevel,
pCash,
pScore,
pKills,
pDeaths,
pRatio,
pRank[7],
}