Create a boolean which holds MAX_PLAYER + 1 cells. After that, make the menu key to remember that selection by setting the boolean true or false. After all, you need to make your menu faster and make it holding some strings, the entire MENU needs to be made using a temporary text, example:
Code:
new temp[64]
formatex(temp, charsmax(temp), "\wМеню")
new menu = menu_create(temp, "MenuHandler")
// the others menu items needs that too...
After all this =))), you use the condition operator to check if the bool is true or false:
Code:
g_bSomeBool[index] ? "/*Bool is True*/" : "/*Bool is False*/"
__________________