You are viewing our Forum Archives. To view or take place in current topics click here.
Sticky?
Yes<3
100.00% (4 votes)
100.00% (4 votes)
No</3
0.00% (0 votes)
0.00% (0 votes)
Total Votes: 4
How To Make a Basic Mod Menu *Tutorial*
Posted:
How To Make a Basic Mod Menu *Tutorial*Posted:
Status: Offline
Joined: Jul 17, 201014Year Member
Posts: 376
Reputation Power: 16
Status: Offline
Joined: Jul 17, 201014Year Member
Posts: 376
Reputation Power: 16
First you are going to want to know the basics of modding in cod tool. Refer to the stickied post.
EX.
Basically this coding will include 2 menus, main and toggles.The back button will activate the menus as shown below in the folowing coding: Bind button_back vstr main
Once the menu is activated the back button will toggle through the main menu and the toggle menu. As you can see below you can combine 2 SVGS to make one menu.
Coding:
Activeaction
bind button_back vstr main
main
vstr m1;vstr m2;vstr m3;vstr m4;vstr m5;vstr m6;vstr m7
m1
bind dpad_left god
m2
bind dpad_up noclip
m3
bind dpad_down give all
m4
bind dpad_right dropweapon
m5
^5Main_Modz (this is the text that will say which menu you are on)
m6
bind button_back vstr toggles
-----------------------------------------
Now you are going to make a second gamesave that will respond to the first one.
Second SVG
toggles
vstr t1;vstr t2;vstr t3;vstr t4;vstr t5;vstr t6
t1
bind dpad_up toggle arcademode 1 0
t2
bind dpad_left (anything you want to toggle)
t3
bind dpad_down (same as above)
t4
bind dpad_right(same as above)
t5
^5Toggles
t6
bind button_back vstr Menu
Last edited by FallenLobbies ; edited 1 time in total
EX.
Basically this coding will include 2 menus, main and toggles.The back button will activate the menus as shown below in the folowing coding: Bind button_back vstr main
Once the menu is activated the back button will toggle through the main menu and the toggle menu. As you can see below you can combine 2 SVGS to make one menu.
Coding:
Activeaction
bind button_back vstr main
main
vstr m1;vstr m2;vstr m3;vstr m4;vstr m5;vstr m6;vstr m7
m1
bind dpad_left god
m2
bind dpad_up noclip
m3
bind dpad_down give all
m4
bind dpad_right dropweapon
m5
^5Main_Modz (this is the text that will say which menu you are on)
m6
bind button_back vstr toggles
-----------------------------------------
Now you are going to make a second gamesave that will respond to the first one.
Second SVG
toggles
vstr t1;vstr t2;vstr t3;vstr t4;vstr t5;vstr t6
t1
bind dpad_up toggle arcademode 1 0
t2
bind dpad_left (anything you want to toggle)
t3
bind dpad_down (same as above)
t4
bind dpad_right(same as above)
t5
^5Toggles
t6
bind button_back vstr Menu
Last edited by FallenLobbies ; edited 1 time in total
#2. Posted:
Status: Offline
Joined: Jun 22, 201113Year Member
Posts: 949
Reputation Power: 43
Not to be A HardA-ss, but I think you should seperate the vstrs like this.
Bind button_Back vstr Toggles
Second Gamesave
---------------------------------------------------------------------------------------
Toggles-::^4TOGGLES_MENU;vstr T1;
T1-vstr T2;vstr T3;vstr T4;vstr T5;vstr T6;vstr T7;vstr T8;
Bind button_Back vstr Toggles
Second Gamesave
---------------------------------------------------------------------------------------
Toggles-::^4TOGGLES_MENU;vstr T1;
T1-vstr T2;vstr T3;vstr T4;vstr T5;vstr T6;vstr T7;vstr T8;
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Jul 23, 201113Year Member
Posts: 57
Reputation Power: 2
Status: Offline
Joined: Jul 23, 201113Year Member
Posts: 57
Reputation Power: 2
great tut im going to use this right now thank you
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Jun 27, 201113Year Member
Posts: 156
Reputation Power: 6
Status: Offline
Joined: Jun 27, 201113Year Member
Posts: 156
Reputation Power: 6
Nice post thanks
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: May 18, 201014Year Member
Posts: 910
Reputation Power: 59
Status: Offline
Joined: May 18, 201014Year Member
Posts: 910
Reputation Power: 59
Thanks man nice tutorial!!
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Jul 17, 201014Year Member
Posts: 376
Reputation Power: 16
Status: Offline
Joined: Jul 17, 201014Year Member
Posts: 376
Reputation Power: 16
i would separate it like that but that im trying to use the layout of cod tool so people beginners can understand it.
- 1useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Jan 18, 201113Year Member
Posts: 362
Reputation Power: 14
Status: Offline
Joined: Jan 18, 201113Year Member
Posts: 362
Reputation Power: 14
FallenLobbies wrote First you are going to want to know the basics of modding in cod tool. Refer to the stickied post.
EX.
Basically this coding will include 2 menus, main and toggles.The back button will activate the menus as shown below in the folowing coding: Bind button_back vstr main
Once the menu is activated the back button will toggle through the main menu and the toggle menu. As you can see below you can combine 2 SVGS to make one menu.
Coding:
Activeaction
bind button_back vstr main
main
vstr m1;vstr m2;vstr m3;vstr m4;vstr m5;vstr m6;vstr m7
m1
bind dpad_left god
m2
bind dpad_up noclip
m3
bind dpad_down give all
m4
bind dpad_right dropweapon
m5
^5Main_Modz (this is the text that will say which menu you are on)
m6
bind button_back vstr toggles
-----------------------------------------
Now you are going to make a second gamesave that will respond to the first one.
Second SVG
toggles
vstr t1;vstr t2;vstr t3;vstr t4;vstr t5;vstr t6
t1
bind dpad_up toggle arcademode 1 0
t2
bind dpad_left (anything you want to toggle)
t3
bind dpad_down (same as above)
t4
bind dpad_right(same as above)
t5
^5Toggles
t6
bind button_back vstr Menu
THANK YOU SO MUCH <3
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Nov 26, 201013Year Member
Posts: 405
Reputation Power: 15
Status: Offline
Joined: Nov 26, 201013Year Member
Posts: 405
Reputation Power: 15
Really good TUT +Rep for u
- 0useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Jul 15, 201113Year Member
Posts: 449
Reputation Power: 17
Status: Offline
Joined: Jul 15, 201113Year Member
Posts: 449
Reputation Power: 17
nice post thank dude
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Apr 28, 201113Year Member
Posts: 24
Reputation Power: 1
Status: Offline
Joined: Apr 28, 201113Year Member
Posts: 24
Reputation Power: 1
nice post keep it up
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.