Post: Multiple Menu's Code.
08-15-2011, 07:00 AM #1
Aoehz
Banned
(adsbygoogle = window.adsbygoogle || []).push({}); So this is the simple coding to have Multiple menu's. Basically, if you want more than one, you have to put the menu into a section on your patch_mp. You also have to link it to the file by going exec (File name).

set Menu_Selection "^0(Name);bind dpad_down vstr MS1;bind button_b vstr Exit"
set MS1 "^0(Menu Name 1);bind dpad_down vstr MS2;bind dpad_up vstr MS3;bind button_b vstr Exit;bind button_a vstr StealthYesNo"
set MS2 "^0(Menu Name 2);bind dpad_down vstr MS3;bind dpad_up vstr MS1;bind button_b vstr Exit;bind button_a vstr (Name)"
set MS3 "^0(Menu Name 3);bind dpad_down vstr MS4;bind dpad_up vstr MS2;bind button_b vstr Exit;bind button_a vstr (Name)"
set MS4 "^0(Menu Name 4);bind dpad_down vstr MS1;bind dpad_up vstr MS3;bind button_b vstr Exit;bind button_a vstr (Name)"

set StealthYesNo "Stealth?;bind dpad_down vstr SYN2;bind dpad_up vstr SYN1;bind button_b vstr MS1;bind button_a vstr (Name)"
set SYN2 "Normal?;bind dpad_down vstr SYN1;bind dpad_up vstr StealthYesNo;bind button_b vstr MS1;bind button_a vstr (Name"

set (Name) ";wait 400;^0(Text);wait 200;exec (Menu Name 1).cfg"
set (Name) "^0(Menu Name 1);wait 400;^2Loaded;wait 200;exec (Menu Name 2).cfg"
set (Name) "^0(Menu Name 1);wait 400;^2Loaded;wait 200;exec (Menu Name 3).cfg"
set (Name) "^0(Menu Name 4);wait 400;^2Loaded;wait 200;exec (Menu Name 4).cfg"
set (Name) "^0(Menu Name 5);wait 400;^2Loaded;wait 200;exec (Menu Name 5).cfg"
set Exit "^0(Menu Name);bind BUTTON_B +stance;bind DPAD_UP vstr Menu_Selection;bind DPAD_DOWN map_restart;bind BUTTON_A +gostand"

Sorry the Fallen, he made this, I asked him on YouTube, so I figured I'd post it here. All credit for this goes to Fallen.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 3 users groaned at Aoehz for this awful post:

Downhunter, User23434, Rainbow Gravity
08-16-2011, 06:32 AM #20
Aoehz
Banned
Originally posted by zFlaVouR View Post
? why make it a new style?


I'm going to try and get the Efthy V6 menu as the selector... I don't want to be seen as the guy who copied Fallen's menu selector, I want to do it onn my own.
08-16-2011, 11:53 AM #21
zFlaVouR
Former zFlaVouR!
Originally posted by zFuu View Post
I'm going to try and get the Efthy V6 menu as the selector... I don't want to be seen as the guy who copied Fallen's menu selector, I want to do it onn my own.


lol its the same
08-16-2011, 04:32 PM #22
XILE_
This is Epic
Originally posted by another user
ok now when its all setup you can begin on the menu make the first line like this. im only gonna make 5 sub menus you can always make more.
Code:

set Menu1 "Sub_Menu_1;bind BUTTON_A vstr Sub1;bind DPAD_DOWN vstr Menu2;bind DPAD_UP vstr Menu5;bind BUTTON_B vstr Exit"

now you just want to make it like that all the way down
Code:

set Menu2 "Sub_Menu_2;bind BUTTON_A vstr Sub2;bind DPAD_DOWN vstr Menu3;bind DPAD_UP vstr Menu1;bind BUTTON_B vstr Exit"
set Menu3 "Sub_Menu_3;bind BUTTON_A vstr Sub3;bind DPAD_DOWN vstr Menu4;bind DPAD_UP vstr Menu2;bind BUTTON_B vstr Exit"
set Menu4 "Sub_Menu_4;bind BUTTON_A vstr Sub4;bind DPAD_DOWN vstr Menu5;bind DPAD_UP vstr Menu3;bind BUTTON_B vstr Exit"
set Menu5 "Sub_Menu_5;bind BUTTON_A vstr Sub5;bind DPAD_DOWN vstr Menu1;bind DPAD_UP vstr Menu4;bind BUTTON_B vstr Exit"

Now You Have The Main Menu Now You Are Going To Make the sub menus


You must login or register to view this content.

close enough?
08-16-2011, 04:53 PM #23
TheFallen
Former Dark Night
QUOTE=zFuu;3668216]So this is the simple coding to have Multiple menu's. Basically, if you want more than one, you have to put the menu into a section on your patch_mp. You also have to link it to the file by going exec (File name).

set Menu_Selection "^0(Name);bind dpad_down vstr MS1;bind button_b vstr Exit"
set MS1 "^0(Menu Name 1);bind dpad_down vstr MS2;bind dpad_up vstr MS3;bind button_b vstr Exit;bind button_a vstr StealthYesNo"
set MS2 "^0(Menu Name 2);bind dpad_down vstr MS3;bind dpad_up vstr MS1;bind button_b vstr Exit;bind button_a vstr (Name)"
set MS3 "^0(Menu Name 3);bind dpad_down vstr MS4;bind dpad_up vstr MS2;bind button_b vstr Exit;bind button_a vstr (Name)"
set MS4 "^0(Menu Name 4);bind dpad_down vstr MS1;bind dpad_up vstr MS3;bind button_b vstr Exit;bind button_a vstr (Name)"

set StealthYesNo "Stealth?;bind dpad_down vstr SYN2;bind dpad_up vstr SYN1;bind button_b vstr MS1;bind button_a vstr (Name)"
set SYN2 "Normal?;bind dpad_down vstr SYN1;bind dpad_up vstr StealthYesNo;bind button_b vstr MS1;bind button_a vstr (Name"

set (Name) ";wait 400;^0(Text);wait 200;exec (Menu Name 1).cfg"
set (Name) "^0(Menu Name 1);wait 400;^2Loaded;wait 200;exec (Menu Name 2).cfg"
set (Name) "^0(Menu Name 1);wait 400;^2Loaded;wait 200;exec (Menu Name 3).cfg"
set (Name) "^0(Menu Name 4);wait 400;^2Loaded;wait 200;exec (Menu Name 4).cfg"
set (Name) "^0(Menu Name 5);wait 400;^2Loaded;wait 200;exec (Menu Name 5).cfg"
set Exit "^0(Menu Name);bind BUTTON_B +stance;bind DPAD_UP vstr Menu_Selection;bind DPAD_DOWN map_restart;bind BUTTON_A +gostand"[/QUOTE]


So let me get this strait, you coppied this from my v4/v3, changed some text, and then don't give me any credit? :lol:
08-17-2011, 02:50 AM #24
PussayPatrol
I'm a neat monster...
Originally posted by zFlaVouR View Post
i do make patches. (some of the best)


Some of the best ayy... :carling:
08-17-2011, 04:29 AM #25
Originally posted by zFuu View Post
So this is the simple coding to have Multiple menu's. Basically, if you want more than one, you have to put the menu into a section on your patch_mp. You also have to link it to the file by going exec (File name).

set Menu_Selection "^0(Name);bind dpad_down vstr MS1;bind button_b vstr Exit"
set MS1 "^0(Menu Name 1);bind dpad_down vstr MS2;bind dpad_up vstr MS3;bind button_b vstr Exit;bind button_a vstr StealthYesNo"
set MS2 "^0(Menu Name 2);bind dpad_down vstr MS3;bind dpad_up vstr MS1;bind button_b vstr Exit;bind button_a vstr (Name)"
set MS3 "^0(Menu Name 3);bind dpad_down vstr MS4;bind dpad_up vstr MS2;bind button_b vstr Exit;bind button_a vstr (Name)"
set MS4 "^0(Menu Name 4);bind dpad_down vstr MS1;bind dpad_up vstr MS3;bind button_b vstr Exit;bind button_a vstr (Name)"

set StealthYesNo "Stealth?;bind dpad_down vstr SYN2;bind dpad_up vstr SYN1;bind button_b vstr MS1;bind button_a vstr (Name)"
set SYN2 "Normal?;bind dpad_down vstr SYN1;bind dpad_up vstr StealthYesNo;bind button_b vstr MS1;bind button_a vstr (Name"

set (Name) ";wait 400;^0(Text);wait 200;exec (Menu Name 1).cfg"
set (Name) "^0(Menu Name 1);wait 400;^2Loaded;wait 200;exec (Menu Name 2).cfg"
set (Name) "^0(Menu Name 1);wait 400;^2Loaded;wait 200;exec (Menu Name 3).cfg"
set (Name) "^0(Menu Name 4);wait 400;^2Loaded;wait 200;exec (Menu Name 4).cfg"
set (Name) "^0(Menu Name 5);wait 400;^2Loaded;wait 200;exec (Menu Name 5).cfg"
set Exit "^0(Menu Name);bind BUTTON_B +stance;bind DPAD_UP vstr Menu_Selection;bind DPAD_DOWN map_restart;bind BUTTON_A +gostand"


thnxs to have shared
08-17-2011, 05:41 AM #26
Aoehz
Banned
Originally posted by zFlaVouR View Post
lol its the same


Fallen's menu selector is int eh bottom left, efthy v6 menu is in the middle.

---------- Post added at 12:41 AM ---------- Previous post was at 12:40 AM ----------

Originally posted by AlexQc96 View Post
thnxs to have shared


its the fallens menu selector btw, so credit goes t him.
08-17-2011, 05:41 AM #27
Aoehz
Banned
Originally posted by AlexQc96 View Post
thnxs to have shared


its the fallens menu selector btw, so credit goes t him.
08-17-2011, 07:30 AM #28
KrushYouUp
Xx LobbyMob xX
Originally posted by zFuu View Post
So this is the simple coding to have Multiple menu's. Basically, if you want more than one, you have to put the menu into a section on your patch_mp. You also have to link it to the file by going exec (File name).

set Menu_Selection "^0(Name);bind dpad_down vstr MS1;bind button_b vstr Exit"
set MS1 "^0(Menu Name 1);bind dpad_down vstr MS2;bind dpad_up vstr MS3;bind button_b vstr Exit;bind button_a vstr StealthYesNo"
set MS2 "^0(Menu Name 2);bind dpad_down vstr MS3;bind dpad_up vstr MS1;bind button_b vstr Exit;bind button_a vstr (Name)"
set MS3 "^0(Menu Name 3);bind dpad_down vstr MS4;bind dpad_up vstr MS2;bind button_b vstr Exit;bind button_a vstr (Name)"
set MS4 "^0(Menu Name 4);bind dpad_down vstr MS1;bind dpad_up vstr MS3;bind button_b vstr Exit;bind button_a vstr (Name)"

set StealthYesNo "Stealth?;bind dpad_down vstr SYN2;bind dpad_up vstr SYN1;bind button_b vstr MS1;bind button_a vstr (Name)"
set SYN2 "Normal?;bind dpad_down vstr SYN1;bind dpad_up vstr StealthYesNo;bind button_b vstr MS1;bind button_a vstr (Name"

set (Name) ";wait 400;^0(Text);wait 200;exec (Menu Name 1).cfg"
set (Name) "^0(Menu Name 1);wait 400;^2Loaded;wait 200;exec (Menu Name 2).cfg"
set (Name) "^0(Menu Name 1);wait 400;^2Loaded;wait 200;exec (Menu Name 3).cfg"
set (Name) "^0(Menu Name 4);wait 400;^2Loaded;wait 200;exec (Menu Name 4).cfg"
set (Name) "^0(Menu Name 5);wait 400;^2Loaded;wait 200;exec (Menu Name 5).cfg"
set Exit "^0(Menu Name);bind BUTTON_B +stance;bind DPAD_UP vstr Menu_Selection;bind DPAD_DOWN map_restart;bind BUTTON_A +gostand"
posted on millions of other threads... admin garbage pickup pleaseSmile

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo