Is that possible? In array structure ...
#7

Limit is 3 dimension so if you use like

enum _something_
{
one,
two[2],
three[3][2]
};
new variable[MAX_PLAYERS][_something_]; // that's already two dimensions

if you use

variable[0][one] = (5); // you use two dimensions
variable[0][two][0] = (1); // this is third dimension
variable[0][three][1][2] = (2); // you pass a limit! so you can't use two dimensions in enum
Reply


Messages In This Thread
In array structure string array (multiple dimension) - by Typhome - 19.06.2013, 11:24
Re: Is that possible? In array structure ... - by dEcooR - 19.06.2013, 11:53
Re: Is that possible? In array structure ... - by Typhome - 19.06.2013, 12:00
Re: Is that possible? In array structure ... - by dEcooR - 19.06.2013, 13:04
Re: Is that possible? In array structure ... - by Typhome - 19.06.2013, 13:25
Re: Is that possible? In array structure ... - by dEcooR - 19.06.2013, 14:12
Re: Is that possible? In array structure ... - by DarkPower - 19.06.2013, 14:16

Forum Jump:


Users browsing this thread: 2 Guest(s)