25.01.2014, 22:20
Quote:
You can put "char" on any array where the highest value to be stored will be 255, and the lowest 0 (or -128 - 127).
|
like:
pawn Code:
enum pInfo
{
pName[MAX_PLAYER_NAME],
pIP[16],
pInfected,
pDiedAsSurvivor,
pMuted,
pAdmin,
pLastTimeHit
}
new PlayerInfo[30][pInfo];