Post: How To Add Spaces To Stealth and Save Space (Not Nooby)
08-06-2012, 01:20 AM #1
Duddy
Little One
(adsbygoogle = window.adsbygoogle || []).push({}); Hey guys Duddy here and today I want to show you how to add spaces to stealth menus or "unknown cmd menus" and also how to save space. Yes I know I look like a noob with my 30 rep and 1 post but trust me on this, i'm not. I didn't go on NGU for awhile and forgot my pass so I had to make a new acc (facepalm). But yeah, I'm into Mw2 1.13 patches/coding but I got my start from here. This space method was originally released in the Mw2 section but it also works for bypass as there basically the same. The save space is very basic and simple but it helps, but lets get into it.

Okay, first off were going to start with adding spaces. This is very simple. Can you tell the difference in these two codes? (These are made by me and YES, I know there bad but there for this tut.

    set gpad_buttonsconfig "d"
set ui_mapname "mp_bog;bind dpad_down set developer 1;set developer_script 1;scr_testclients 0"
bind dpad_up "bind dpad_down vstr d;bind dpad_up vstr u;bind button_x vstr x;bind button_b vstr em;vstr 1"
set 1 "set d vstr 2;set u vstr 3;set x vstr mm;vstr 1t"
set 2 "set d vstr 3;set u vstr 1;set x vstr gs;vstr 2t"
set 3 "set d vstr 1;set u vstr 2;set x vstr im;vstr 3t"
set mm "set d vstr mm1;set u vstr mm2;set x god;vstr mmt"
set mm1 "set d vstr mm2;set u vstr mm;set x noclip;vstr mm1t"
set mm2 "set d vstr mm;set u vstr mm1;set x toggle player_sustainammo 1 0;vstr mm2t"
set 1t "\""^1Main Mods"\""
set 2t "\""^2Game Settings"\""
set 3t "\""^3Infection Menu"\""
set mmt "\""^1God Mode"\""
set mm1t "\""^2UFO Mode"\""
set mm2t "\""^3Unlimited Ammo"\""
set em1 "bind button_x +usereload;bind button_b +stance"


     set gpad_buttonsconfig "d"
set ui_mapname "mp_bog;bind dpad_down set developer 1;set developer_script 1;scr_testclients 0"
bind dpad_up "bind dpad_down vstr d;bind dpad_up vstr u;bind button_x vstr x;bind button_b vstr em;vstr 1"
set 1 "set d vstr 2;set u vstr 3;set x vstr mm;vstr 1t"
set 2 "set d vstr 3;set u vstr 1;set x vstr gs;vstr 2t"
set 3 "set d vstr 1;set u vstr 2;set x vstr im;vstr 3t"
set mm "set d vstr mm1;set u vstr mm2;set x god;vstr mmt"
set mm1 "set d vstr mm2;set u vstr mm;set x noclip;vstr mm1t"
set mm2 "set d vstr mm;set u vstr mm1;set x toggle player_sustainammo 1 0;vstr mm2t"
set 1t "^1Main_Mods"
set 2t "^2Game_Settings"
set 3t "^3Infection_Menu"
set mmt "^1God_Mode"
set mm1t "^2UFO_Mode"
set mm2t "^3Unlimited_Ammo"
set em1 "bind button_x +usereload;bind button_b +stance"


See how the second one dosen't have the extra "\" before the "^1TEXT"? Well if you notice in the first one, all the menu titles have "\" before the original ". If this sounds confusing all you basically gotta do is put "\" before both ", for example.

     "^1God_Mode" 

Before each ", add "\" and remove the underscores like this.
     "\""^1God Mode "\"" 

REMEMBER, you must keep the original " and make sure that the "\" is in front of each of the original ".
A little info is see how I separate my menu binds from my menu text, you must do this in order for spaces to work. Now an easy way to get the menu text to show up still is by putting a title, like this,
     set 1 "set d vstr 2;set u vstr 3;set x vstr mm;vstr 1t"
set 2 "set d vstr 3;set u vstr 1;set x vstr gs;vstr 2t"
set 3 "set d vstr 1;set u vstr 2;set x vstr im;vstr 3t"
set 1t "\""^1Main Mods"\""
set 2t "\""^2Game Settings"\""
set 3t "\""^3Infection Menu"\""

See how it says vstr #t at the end, the t stands for title (You can use whatever you want) and it sets the screen text. So you set all the menu binds then at the end put this without bind just how it is,
    vstr MenuOpt1t


Then put this somewhere,
     set MenuOpt1t "\"" TEXT WTIH SPACES"\""


Now for saving space. My method is very simple by just binding the controls to vstr to set them. Example.
     bind dpad_up toggle player_sustainammo 1 0

Can be turned into.
     set up toggle player_sustainammo 1 0


When you set the opening bind of you menu like this,
     bind dpad_up "vstr Mo" 

But the binds you're going to use as vstr like this,
     bind dpad_up "vstr Mo;bind dpad_down vstr d;bind dpad_up vstr u;bind button_x vstr x"

Take a look at my codes and see how they look.
    set gpad_buttonsconfig "d"
set ui_mapname "mp_bog;bind dpad_down set developer 1;set developer_script 1;scr_testclients 0"
bind dpad_up "bind dpad_down vstr d;bind dpad_up vstr u;bind button_x vstr x;bind button_b vstr em;vstr 1"
set 1 "set d vstr 2;set u vstr 3;set x vstr mm;vstr 1t"
set 2 "set d vstr 3;set u vstr 1;set x vstr gs;vstr 2t"
set 3 "set d vstr 1;set u vstr 2;set x vstr im;vstr 3t"
set mm "set d vstr mm1;set u vstr mm2;set x god;vstr mmt"
set mm1 "set d vstr mm2;set u vstr mm;set x noclip;vstr mm1t"
set mm2 "set d vstr mm;set u vstr mm1;set x toggle player_sustainammo 1 0;vstr mm2t"
set 1t "\""^1Main Mods"\""
set 2t "\""^2Game Settings"\""
set 3t "\""^3Infection Menu"\""
set mmt "\""^1God Mode"\""
set mm1t "\""^2UFO Mode"\""
set mm2t "\""^3Unlimited Ammo"\""
set em1 "bind button_x +usereload;bind button_b +stance"

It might look confusing but trust me, it's not.
Also, you must remember to bind the binds used back to the originals like
     bind dpad_up +actionslot 1

and set a exit vstr in the menu opening to. Sorry I forgot that and I'm too lazy to go back and fix but if you're confused pm me for my skype.
     bind dpad_up +actionslot 1


Little extra.
You can also use the space method to make infections like Mw2 but for that tut you're gonna have to add my skype. PM me for it.
Also, if you don't get any of this or a single part, PM me for my skype and i'll add you.
(adsbygoogle = window.adsbygoogle || []).push({});

The following user thanked Duddy for this useful post:

Hacks 'n' Mods
08-06-2012, 01:39 AM #2
Hacks 'n' Mods
Maggbot timeout!
Originally posted by DuddyOG View Post
Hey guys Duddy here and today I want to show you how to add spaces to stealth menus or "unknown cmd menus" and also how to save space. Yes I know I look like a noob with my 30 rep and 1 post but trust me on this, i'm not. I didn't go on NGU for awhile and forgot my pass so I had to make a new acc (facepalm). But yeah, I'm into Mw2 1.13 patches/coding but I got my start from here. This space method was originally released in the Mw2 section but it also works for bypass as there basically the same. The save space is very basic and simple but it helps, but lets get into it.

Okay, first off were going to start with adding spaces. This is very simple. Can you tell the difference in these two codes? (These are made by me and YES, I know there bad but there for this tut.

    set gpad_buttonsconfig "d"
set ui_mapname "mp_bog;bind dpad_down set developer 1;set developer_script 1;scr_testclients 0"
bind dpad_up "bind dpad_down vstr d;bind dpad_up vstr u;bind button_x vstr x;bind button_b vstr em;vstr 1"
set 1 "set d vstr 2;set u vstr 3;set x vstr mm;vstr 1t"
set 2 "set d vstr 3;set u vstr 1;set x vstr gs;vstr 2t"
set 3 "set d vstr 1;set u vstr 2;set x vstr im;vstr 3t"
set mm "set d vstr mm1;set u vstr mm2;set x god;vstr mmt"
set mm1 "set d vstr mm2;set u vstr mm;set x noclip;vstr mm1t"
set mm2 "set d vstr mm;set u vstr mm1;set x toggle player_sustainammo 1 0;vstr mm2t"
set 1t "\""^1Main Mods"\""
set 2t "\""^2Game Settings"\""
set 3t "\""^3Infection Menu"\""
set mmt "\""^1God Mode"\""
set mm1t "\""^2UFO Mode"\""
set mm2t "\""^3Unlimited Ammo"\""
set em1 "bind button_x +usereload;bind button_b +stance"


     set gpad_buttonsconfig "d"
set ui_mapname "mp_bog;bind dpad_down set developer 1;set developer_script 1;scr_testclients 0"
bind dpad_up "bind dpad_down vstr d;bind dpad_up vstr u;bind button_x vstr x;bind button_b vstr em;vstr 1"
set 1 "set d vstr 2;set u vstr 3;set x vstr mm;vstr 1t"
set 2 "set d vstr 3;set u vstr 1;set x vstr gs;vstr 2t"
set 3 "set d vstr 1;set u vstr 2;set x vstr im;vstr 3t"
set mm "set d vstr mm1;set u vstr mm2;set x god;vstr mmt"
set mm1 "set d vstr mm2;set u vstr mm;set x noclip;vstr mm1t"
set mm2 "set d vstr mm;set u vstr mm1;set x toggle player_sustainammo 1 0;vstr mm2t"
set 1t "^1Main_Mods"
set 2t "^2Game_Settings"
set 3t "^3Infection_Menu"
set mmt "^1God_Mode"
set mm1t "^2UFO_Mode"
set mm2t "^3Unlimited_Ammo"
set em1 "bind button_x +usereload;bind button_b +stance"


See how the second one dosen't have the extra "\" before the "^1TEXT? Well if you notice in the first one, all the menu titles have "\" before the original ". If this sounds confusing all you basically gotta do is put "\" before both ", for example.

     "^1God_Mode" 

Before each ", add "\" and remove the underscores like this.
     "\""^1God Mode "\"" 

REMEMBER, you must keep the original " and make sure that the "\" is in front of each of the original ".
A little info is see how I separate my menu binds from my menu text, you must do this in order for spaces to work. Now an easy way to get the menu text to show up still is by putting a title, like this,
     set 1 "set d vstr 2;set u vstr 3;set x vstr mm;vstr 1t"
set 2 "set d vstr 3;set u vstr 1;set x vstr gs;vstr 2t"
set 3 "set d vstr 1;set u vstr 2;set x vstr im;vstr 3t"
set 1t "\""^1Main Mods"\""
set 2t "\""^2Game Settings"\""
set 3t "\""^3Infection Menu"\""

See how it say vstr #t at the end, the t stands for title (You can use whatever you want) and it sets the screen text. So you set all the menu binds then put
    vstr MenuOpt1t

without binds just that and put this somewhere
     set MenuOpt1t "\"" TEXT WTIH SPACES"\""


Now for saving space. My method is very simple by just binding the controls to vstr to set them. Example.
     bind dpad_up toggle player_sustainammo 1 0

Can be turned into.
     set up toggle player_sustainammo 1 0


When you set the opening bind of you menu like this,
     bind dpad_up "vstr Mo" 

But the binds you're going to use as vstr like this,
     bind dpad_up "vstr Mo;bind dpad_down vstr d;bind dpad_up vstr u;bind button_x vstr x"

Take a look at my codes and see how they look.
    set gpad_buttonsconfig "d"
set ui_mapname "mp_bog;bind dpad_down set developer 1;set developer_script 1;scr_testclients 0"
bind dpad_up "bind dpad_down vstr d;bind dpad_up vstr u;bind button_x vstr x;bind button_b vstr em;vstr 1"
set 1 "set d vstr 2;set u vstr 3;set x vstr mm;vstr 1t"
set 2 "set d vstr 3;set u vstr 1;set x vstr gs;vstr 2t"
set 3 "set d vstr 1;set u vstr 2;set x vstr im;vstr 3t"
set mm "set d vstr mm1;set u vstr mm2;set x god;vstr mmt"
set mm1 "set d vstr mm2;set u vstr mm;set x noclip;vstr mm1t"
set mm2 "set d vstr mm;set u vstr mm1;set x toggle player_sustainammo 1 0;vstr mm2t"
set 1t "\""^1Main Mods"\""
set 2t "\""^2Game Settings"\""
set 3t "\""^3Infection Menu"\""
set mmt "\""^1God Mode"\""
set mm1t "\""^2UFO Mode"\""
set mm2t "\""^3Unlimited Ammo"\""
set em1 "bind button_x +usereload;bind button_b +stance"

It might look confusing but trust me, it's not.
Also, you must remember to bind the binds used back to the originals like and set a exit vstr in the menu opening to. Sorry I forgot that and I'm too lazy to go back and fix but if you're confused pm me for my skype.
     bind dpad_up +actionslot 1


Little extra.
You can also use the space method to make infections like Mw2 but for that tut you're gonna have to add my skype. PM me for it.
Also, if you don't get any of this or a single part, PM me for my skype and i'll add you.


Im certainly going to try this,Thanks Happy

---------- Post added at 01:39 AM ---------- Previous post was at 01:38 AM ----------

Im certainly going to try this, thanks :d
08-06-2012, 08:29 PM #3
Kush Friendly
League Champion
Originally posted by DuddyOG View Post
"\""^1God Mode "\""


It should be like this "\""God Mode""
08-06-2012, 08:52 PM #4
Duddy
Little One
Originally posted by Kush
It should be like this "\""God Mode""


? Theres "\" before each " so "\""God Mode"\""
08-07-2012, 02:37 AM #5
Kush Friendly
League Champion
Originally posted by DuddyOG View Post
? Theres "\" before each " so "\""God Mode"\""


No. You dont have another "\" after the option, its a wast of space. It should like like this = set 1 "\""God Mode"" not set 1 "\""God Mode"\"".

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo