Post: adding another page to players list help!
04-10-2016, 10:34 AM #1
Apex_Modz-
Do a barrel roll!
(adsbygoogle = window.adsbygoogle || []).push({}); can someone please help me get the page 2 on my players list to work i can get it to come up but when i click on page 2 its disconnects me and freezes my ps3 any help would be good this is how ive done it when i try putting self add_option_alt i freeze

self add_option("pOpt " + i + "_2", "Next Page", ::submenu, "" + i + "_4", "[" + verificationToColor(player.MenuAccess) + "^7] " + name);

self add_menu("pOpt_" + i + "_4" + verificationToColor(player.MenuAccess) + "^7] " + name, "CoHost");
(adsbygoogle = window.adsbygoogle || []).push({});
04-10-2016, 11:34 AM #2
JustFuSiOn
Are you high?
Originally posted by Apex
can someone please help me get the page 2 on my players list to work i can get it to come up but when i click on page 2 its disconnects me and freezes my ps3 any help would be good this is how ive done it when i try putting self add_option_alt i freeze

self add_option("pOpt " + i + "_2", "Next Page", ::submenu, "" + i + "_4", "[" + verificationToColor(player.MenuAccess) + "^7] " + name);

self add_menu("pOpt_" + i + "_4" + verificationToColor(player.MenuAccess) + "^7] " + name, "CoHost");


Just set it up the exact same way as the first page is set up, except put an underscore or a 2 or something after pOpt in the second menu, e.g.
    self add_menu(pOpt_ " + i, "pOpt " + i, "CoHost");

self add_option("pOpt_ " + i, "Option here", ::scripthere, player);

The following user thanked JustFuSiOn for this useful post:

Apex_Modz-
04-10-2016, 11:39 AM #3
Apex_Modz-
Do a barrel roll!
Originally posted by xFuSiOnMODzZ View Post
Just set it up the exact same way as the first page is set up, except put an underscore or a 2 or something after pOpt in the second menu, e.g.
    self add_menu(pOpt_ " + i, "pOpt " + i, "CoHost");

self add_option("pOpt_ " + i, "Option here", ::scripthere, player);


okay sweet ill give it a go
04-10-2016, 12:10 PM #4
Apex_Modz-
Do a barrel roll!
Originally posted by xFuSiOnMODzZ View Post
Just set it up the exact same way as the first page is set up, except put an underscore or a 2 or something after pOpt in the second menu, e.g.
    self add_menu(pOpt_ " + i, "pOpt " + i, "CoHost");

self add_option("pOpt_ " + i, "Option here", ::scripthere, player);


your a legend dude thanks heaps it worked it was so simple to i couldnt believe it took me that long

The following user thanked Apex_Modz- for this useful post:

JustFuSiOn
04-10-2016, 04:37 PM #5
MrMoan
Big Daddy
Try this buddy

self add_option("pOpt " + i, "Page 2", ::submenu, "PlayersMenu2" + i, "^FPage 2");

self add_menu("PlayersMenu2" + i, "PlayersMenu", "Co-Host");
self add_option("PlayersMenu2" + i, "Test", ::Test_Function);
self add_option("PlayersMenu2" + i, "Test", ::Test_Function);
self add_option("PlayersMenu2" + i, "Test", ::Test_Function);
self add_option("PlayersMenu2" + i, "Test", ::Test_Function);
04-11-2016, 12:38 AM #6
Originally posted by MrMoan View Post
Try this buddy

self add_option("pOpt " + i, "Page 2", ::submenu, "PlayersMenu2" + i, "^FPage 2");

self add_menu("PlayersMenu2" + i, "PlayersMenu", "Co-Host");
self add_option("PlayersMenu2" + i, "Test", ::Test_Function);
self add_option("PlayersMenu2" + i, "Test", ::Test_Function);
self add_option("PlayersMenu2" + i, "Test", ::Test_Function);
self add_option("PlayersMenu2" + i, "Test", ::Test_Function);


I use this base also and I have tried adding a page 2 to an existing option in the clients menu, So click there name, Then add an option, In there has options then a page 2 of that, No success
04-11-2016, 12:41 AM #7
MrMoan
Big Daddy
Originally posted by TheNiceUb3r View Post
I use this base also and I have tried adding a page 2 to an existing option in the clients menu, So click there name, Then add an option, In there has options then a page 2 of that, No success


Any luck in making this base stable?
iv made it pretty good but still overflows abit
04-11-2016, 12:42 AM #8
Originally posted by MrMoan View Post
Any luck in making this base stable?
iv made it pretty good but still overflows abit


I have never overflowed with it I freeze SOMETIMES but don't know of any base other than it that can handle lol, I tried making a sub menu by doing this but it shows nothing

self add_option("pOpt " + i, "Options", ::submenu, "pOpt " + i + "_2", "[" + verificationToColor(player.status) + "^7] " + playerName);
self add_menu("pOpt " + i + "_2", "pOpt " + i, "[" + verificationToColor(player.status) + "^7] " + playerName, "Co-Host");
self add_option("pOpt " + i + "_2", "Kick Player", ::kickPlayer, player);

self add_option("pOpt_2 " + i, "Page 2", ::submenu, "PlayersMenu2" + i, "^FPage 2");
self add_menu("PlayersMenu2" + i, "pOpt_2", "Co-Host");
04-11-2016, 12:45 AM #9
MrMoan
Big Daddy
Originally posted by TheNiceUb3r View Post
I have never overflowed with it I freeze SOMETIMES but don't know of any base other than it that can handle lol, I tried making a sub menu by doing this but it shows nothing

self add_option("pOpt " + i, "Options", ::submenu, "pOpt " + i + "_2", "[" + verificationToColor(player.status) + "^7] " + playerName);
self add_menu("pOpt " + i + "_2", "pOpt " + i, "[" + verificationToColor(player.status) + "^7] " + playerName, "Co-Host");
self add_option("pOpt " + i + "_2", "Kick Player", ::kickPlayer, player);

self add_option("pOpt_2 " + i, "Page 2", ::submenu, "PlayersMenu2" + i, "^FPage 2");
self add_menu("PlayersMenu2" + i, "pOpt_2", "Co-Host");

Yea same i freeze sometimes if you want i can send you my edit so you can see the player stuff
04-11-2016, 12:46 AM #10
Originally posted by MrMoan View Post
Yea same i freeze sometimes if you want i can send you my edit so you can see the player stuff


Sure, I am gonna sit here until I figure this shit out ill let you know if I do lol

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo