Right, made it!
Now I want to create a const to give "names" to that option in the menu, is this the right way?
PHP Code:
new const MenuOptions[][Options] =
{
"Option 1",
"Option 2",
"Option 3"
};
And in the menu, something like:
PHP Code:
static item[128];
for(new i = 0; i < sizeof Options; i++)
{
formatex(item, sizeof(item) - 1, "%s%s", MenuOptions[i], Options:(1<<i) ? "\yON" : "\rOFF");
menu_additem(menu, item, "");
}
I think that's incorrect because I dont know much about bits and how to work with that enumeration but its just to explain what I want to make