26.07.2010, 01:01
They are called multidimensional arrays :P. Here is a little example:
pawn Code:
//Change the 5 to the total amount of locations (100)
new Float:Locations[5][4] = {
//X | Y | Z | Angle
{0.0, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, 0.0}
};

