i have two custom menus
1)pro_menu
2)pro_moremenu
and i have add in the first when press 9 to go to teh second menu and i cant
it shows this message Unknown command: pro_moremenu
what can i do??? the init code for each one is
first
Code:
public plugin_init()
{
register_plugin("ProGather Menu Main","1.0","Qlim4X")
register_menucmd(register_menuid("ProGather Menu Main By Qlim4X"),1023,"actionMenu")
register_clcmd("pro_menu","showMenu",ADMIN_KICK,"gather menu main")
new modName[32]
get_modname(modName,31)
}
second
Code:
public plugin_init()
{
register_plugin("ProGather Menu More","1.0","Qlim4X")
register_menucmd(register_menuid("ProGather Menu More By Qlim4X"),1023,"actionMenu")
register_clcmd("pro_moremenu","showMenu",ADMIN_KICK,"gather menu more")
new modName[32]
get_modname(modName,31)
}