30.07.2010, 09:33
So how to use PVars if I need to set each player something with 10 subthings,
Now I have for example:
and how should I make this with PVars?
Now I have for example:
pawn Код:
new Thing[MAX_PLAYERS][10];
OnSomeWhere()
{
Thing[playerid][0] = 23;
Thing[playerid][1] = 34;
}

