Hum what you saying i could do to xD
Sorry if i didnt gave all info...
The problem is that i use menu that loads items from cfg file, so i cant do as you say, because the second page are together with the others.
And i just want it show second page, in case of chose something from second page.
Here part of code:
PHP Code:
public Music_Options(id, menu, item)
{
if (item == MENU_EXIT)
{
menu_destroy(menu)
return PLUGIN_HANDLED
}
new info[3], name[64]
new access, callback
menu_item_getinfo(menu, item, access, info, 2, name, 63, callback)
new key = str_to_num(info)
if(key == 1)
client_cmd(id, "mp3 stop")
else
{
new szSongName[64]
TrieGetString(g_tSongs, name, szSongName, 63)
client_cmd(id, "mp3 play %s", szSongName)
}
return PLUGIN_CONTINUE
}
__________________