Originally posted by Apex
do you know how to add another submenu to the players list thats the only one i cant work out
I found this for you:
Oh, that is actualy relitivly straight forward.
Guessing you have the client menu added already, already,
Just add a new option with a subenu and add it to your client menu like so:
Code:
self add_menu_alt("pOpt " + i, "PlayersMenu"); <-- Client Menu
self add_option("pOpt " + i, "^6Page 2", ::submenu, "pOpt_ " + i, "Page 1");
<-- Page 2
After you have added your page to the client menu, then make the menu that the option opens.
Then add your functions to it
Code:
self add_menu("pOpt_ " + i, "pOpt " + i); <-- Page 2
self add_option("pOpt_ " + i, "Text Here", ::FunctionHere);
self add_option("pOpt_ " + i, "Text Here", ::FunctionHere);
self add_option("pOpt_ " + i, "Text Here", ::FunctionHere);
<-- Functions
If you do go and rename the "pOpt_ ", make sure you keep the + i, as that identifies the player.
Hope I helped, if I didn't explain it very well, feel free to pm me or sumin, ill try my best to help you out