So what should I change it too? I looked in the BF2 menu section at that point to get help with menu's with sub sections. I'm not very good with menu's and got really confused on that part of it.
Edit: That part was supposed to do with this part. The cases were supposed to be the menu items but I'm assuming I did that wrong.
Code:
public pokemenu(id)
{
new menu = menu_create("\rPoke Rank \wMenu", "menu_handler");
menu_additem(menu, "\r25k Poke Rank \wMenu", "0", 0);
menu_additem(menu, "\r50k Poke Rank \wMenu", "1", 0);
menu_additem(menu, "\r75k Poke Rank \wMenu", "2", 0);
menu_additem(menu, "\r100k Poke Rank \wMenu", "3", 0);
menu_setprop(menu, MPROP_EXIT, MEXIT_ALL);
menuselection[id]=MENU_MAIN
menu_display(id, menu, 0);
return PLUGIN_CONTINUE;
}
__________________