14.09.2016, 07:21
Код:
static gTableFurniture[] =
{
1824, 1896, 2964,
};
~~~~
case 0: ShowModelSelectionMenu(playerid, "Tables", MENU_BUY_FURNITURE, gTableFurniture, sizeof(gTableFurniture));
I'm messing around with arrays now, got this
Код:
enum e_FurnitureData
{
e_FurnitureName[64],
e_FurnitureModel,
e_FurniturePrice
};
static gTableFurniture[][e_FurnitureData] =
{
{"Wood Table", 1824, 250},
{"Oak Table", 1896, 300},
{"Other Table", 2964, 350}
};
Код:
\script.pwn(2468) : error 048: array dimensions do not match case 0: ShowModelSelectionMenu(playerid, "Tables", MENU_BUY_FURNITURE, gTableFurniture, sizeof(gTableFurniture));

