07.05.2012, 00:59
Quote:
I've seen it done with coordinates, where they put like 10 coordinates and they refer back to it using a enum of some sort, how do I do that?
|
pawn Код:
enum PLAYER_DATA
{
iLogged,
iAdminLevel,
iVip,
bIsRegged,
iPocketCash,
iKills,
iDeaths
}
new gPlayerData[MAX_PLAYERS][PLAYER_DATA];
https://sampwiki.blast.hk/wiki/Keywords:Initialisers#enum
-FalconX