(adsbygoogle = window.adsbygoogle || []).push({});
That's right, from the creator of "How to make a cod4 mod menu" and "How to make multiple menus" I bring you a new tutorial! How to make a realistic mod menu! In this tutorial I will teach you how to make a realistic mod menu that includes scrolling with the dpad and selecting with the X button. Yes, this is for bypass and no, you don't need to have a jailbroken ps3! Also, some credit is given to MecAj for making the first realistic mod menu post on here.
This type of mod menu may seem nice and cool, but there are some downsides:
1. The part that makes it realistic takes up a lot of space, so you can only have limited codes.
2. It takes a lot of time to make and can get really complicated.
3. If you use the button X to select, you wont be able to jump.
4. It will only work if you're the host.
Ok. Lets get started :y:
We are going to make it so that this mod has an xp menu and a basic menu with all the basic hacks and what not.
We'll start out with the CM. To save space, make sure you delete everything in there and then paste this:
set gpad_buttonsConfig "default_systemlink"
set input_autoAim "1"
Now we are going to want to start the menu. If you don't know how to create a normal mod menu yet, I would check out some of my other tutorials.
First you are going to want to calculate how many mods you want there to be in this menu. This is extremely important as you it will affect the menu a lot. We are going to have 4 mods and another option to go to the xp menu. The 4 mods will be god, noclip, unlimited ammo and fast restart.
The part that makes this real is the say commands. If you want to have 4 options, you have to have 4 say commands for every mod. If you look at the codes, you can see what I mean.
Here's how I will explain it. I will post my realistic menu, then I will color things and explain them.
MP:
set playlist "6"
set clanName "^9"
[COLOR="DarkRed"]set Cg_hudchatposition "250 250"[/COLOR]
set jl5 "vstr jl5a;set jl vstr jl6"
set jl5a "bind Button_A fast_restart;say ^5God;say ^5noclip;say ^5Ammo;say ^4restart;say ^5XP Menu"
set jl6 "vstr jl6a;set jl vstr jl1"
set jl6a "bind Button_A vstr bs;say ^5God;say ^5noclip;say ^5Ammo;say ^5Laser;say ^4XP Menu"
set bs3 "vstr bs3a;set bs vstr bs4"
set bs3a "bind button_a scr_xpxcale -2500;say ^2Low;say ^2High;say ^1Negative;say ^2Main Menu"
set bs4 "vstr bs4a;set bs vstr bs1"
set bs4a "[COLOR="Magenta"]bind button_a vstr jl[/COLOR];say ^2Low;say ^2High;say ^2Negative;say ^1Main Menu"
bind dpad_left "vstr jl"
CM
set gpad_buttonsConfig "default_systemlink"
set input_autoAim "1"
set jl "vstr jl1"
set jl1 "vstr jl1a;set jl vstr jl2"
set jl1a "[COLOR="Blue"]bind dpad_down vstr jl[/COLOR];bind Button_A God;[COLOR="Red"]cg_chatHeight 5[/COLOR];say ^4God;say ^5noclip;say ^5Ammo;say ^5restart;say ^5XP Menu"
set jl2 "vstr jl2a;set jl vstr jl3"
set jl2a "bind Button_A noclip;say ^5God;say ^4noclip;say ^5Ammo;say ^5restart;say ^5XP Menu"
set jl3 "vstr jl3a;set jl vstr jl5"
set jl3a "Bind Button_A toggle player_sustainAmmo 0 1;say ^5God;say ^5noclip;say ^4Ammo;say ^5restart;say ^5XP Menu"
set bs "vstr bs1"
set bs1 "vstr bs1a;set bs vstr bs2"
set bs1a "bind dpad_down vstr bs;cg_chatHeight 4;bind button_a scr_xpscale 200;say ^1Low;say ^2High;say ^2Negative;say ^2Main Menu"
set bs2 "vstr bs2a;set bs vstr bs3"
set bs2a "bind button_a scr_xpscale 2500;say ^2Low;say ^1High;say ^2Negative;say ^2Main Menu"
This code is used to set the text in the middle of the screen.
This code will make the menu look realistic. However many options you have, you need to set that to that number.
This code needs to be here as it tells the game that when x is pressed to go to the basic menu.
This is here to tell the game to make it so that down on the dpad will control the scrolling.
If you need help with anything, quote me so that I can help.