13.02.2009, 20:23
Is there any way to make one? Or to atleast achieve the same effect?
Please help. Thanks.
Please help. Thanks.
new array[1][1][1];
new pName[MAX_PLAYERS][MAX_PLAYER_NAME];
enum InventoryItems
{
Drugs
Mats
}
new pInventory[MAX_PLAYERS][InventoryItems][100] //99 drugs or mats allowed
Originally Posted by KANiS6111
it works with [1][1][1]... but if you type try to make the 3rd dimension atleast 2 slots deep, you get an error. Please help... I need to save a string as a player flag. There can be 200 players and 300 flags for each one, so I end up with:
new flags[200][300][128]; but that gives an error. |