11.08.2013, 17:26
Try this:
And then use it like this:
pawn Код:
enum arrayPrices
{
priceInt,
priceEmbed[12]
};
new PriceArray[][arrayPrices] =
{
{11500, "11500"},
{11501, "11501"}
};
pawn Код:
printf("%d", PriceArray[0][priceInt]); // 11500
printf("%d", PriceArray[1][priceInt]); // 11501
