28.07.2015, 21:02
Quote:
I'm trying to assign a default value to variables when making them
pawn Код:
|
PHP код:
new BlaBla[][] = {
{ index0, index2, index3 }, // Index '0' in the first dimension
{ index1, index2, index3 }, // Index '1' in the first dimension
{ index1, index2, index3 } // Index '2' in the first dimension
};
// Replace the index's with your values.
BlaBla[0][2] // Will have the value of index3 in index '0' in the first dimension.