20.02.2009, 12:36
Quote:
|
Originally Posted by icey--t
i still dont get it. why even use it then. so max_players puts a playerid unique to a declaration?
|
e.g.
pawn Код:
new money;
pawn Код:
new money[MAX_PLAYERS];
_________________________________________________
With that, you can store players information easily.
pawn Код:
money[playerid] = GetPlayerMoney(playerid);
printf("playerid %d has $%d",playerid, money[playerid]);

