07.03.2012, 13:24
Im attempting to make a copy of the mod garage menu's, im using a simple enum with a multi dimentional array, i keep getting an error any help appriciated.
I have not included entire array, simply the first bit that has the error, but will if needed.
{"Paint Jobs"}, gets me the following error "error 008: must be a constant expression; assumed zero"
Any help apriciated,
Thanks, Grimrandomer
PHP код:
enum cat {
text[40]
}
new cat:gShopItems[] = {
{"Paint Jobs"},
{"Colours"},
{"Exhausts"},
{"Front Bumper"},
{"Rear Bumper"},
{"Roof"},
{"Spoilers"},
{"Side Skirts"},
{"Wheels"},
{"Car Stereo"},
{"Hydraulics"},
{"Nitro"}
};
{"Paint Jobs"}, gets me the following error "error 008: must be a constant expression; assumed zero"
Any help apriciated,
Thanks, Grimrandomer