Which option to use?
#1

Option 1:

Код:
enum einv
{
	inv,
	amount
};
new Inventory[MAX_PLAYERS][15][einv];
Option 2:

Код:
enum einv
{
	inv,
	amount
};
new Inventory[MAX_PLAYERS][einv][15];
Option 3:

Код:
enum einv
{
	inv[15],
	amount[15]
};
new Inventory[MAX_PLAYERS][einv];
Option 4:

Код:
new InventoryItem[MAX_PLAYERS][15];
new InventoryAmount[MAX_PLAYERS][15];
Reply


Messages In This Thread
Which option to use? - by darkHero - 10.11.2018, 02:32
Re: Which option to use? - by AlfaSufaIndo - 10.11.2018, 02:53
Re: Which option to use? - by Blackaslan - 10.11.2018, 03:23
Re: Which option to use? - by robibacsika - 10.11.2018, 09:32
Re: Which option to use? - by khRamin78 - 10.11.2018, 10:04
Re: Which option to use? - by khRamin78 - 10.11.2018, 13:21

Forum Jump:


Users browsing this thread: 1 Guest(s)