08.11.2012, 04:49
after the enum you have to create something like this
this will allow you to use all the anum variables
then in on player connect you can do you like this
pawn Код:
new PlayerInfo[MAX_PLAYERS][pInfo];
then in on player connect you can do you like this
pawn Код:
new string[100];
format(string, sizeof(string), "You have %s money", PlayerInfo[playerid][pCash]);
SendClientMessage(playerid, string);

