10.11.2018, 02:32
Option 1:
Option 2:
Option 3:
Option 4:
Код:
enum einv
{
inv,
amount
};
new Inventory[MAX_PLAYERS][15][einv];
Код:
enum einv
{
inv,
amount
};
new Inventory[MAX_PLAYERS][einv][15];
Код:
enum einv
{
inv[15],
amount[15]
};
new Inventory[MAX_PLAYERS][einv];
Код:
new InventoryItem[MAX_PLAYERS][15]; new InventoryAmount[MAX_PLAYERS][15];


