Post: [RELEASE] bluLite Menu by Blackstorm
09-07-2012, 06:21 AM #1
Blackstorm
Veni. Vidi. Vici.
(adsbygoogle = window.adsbygoogle || []).push({}); Well i was going to make some changes to the menu but i can't since i literally have no time during the day to make the changes i wanted.

Anyways, I present to you the bluLite menu. It may be my final contribution to GSC mods. My goal for this menu was originality and simplicity.

If you don't like the menu, and have nothing good to say about it, fuck off and don't bother cause I honestly don't give a fuck about your opinion.

Info about the menu is at the bottom of the thread.


**MENU UPDATED**
I have done a major update with the menu as it is now bug free! (As far as I can tell)

Updates:

  • Moved menu more to the left to have more space for option text
  • Increased scrolling speed
  • Removed menu text in the beginning (Pretty pointless... it was for video purposes)
  • Fixed text disappearing bug
  • Menu is now very stable!


If you're making a patch with this, download the bluLite - missions.gsc, if you want just the menu download bluLite.gsc.

Here are the downloads to the updated menu:

You must login or register to view this content.

You must login or register to view this content.

** VIDEO OF THE MENU **





** HOW TO EDIT THE MENU**


This menu is VERY easy to use and it only has two functions.

First off, all of the menu options go in the function buildMenu()!

Here are the two functions:

    
_addMenu( menu )


    
_addOption( menu, option, function, parameter )


Now, here's how to add a menu:

    
The argument in _addMenu( menu ) is a string.
here's an example:

self _addMenu( "Menu 1" );


And boila! You've successfully created a menu!

And now for menu options!

    
Here's the function:
_addOption( menu, option, function, parameter )

menu = string (This is the menu you'd want to add the option to.)
option = string (This is the text that will show up for the option on the menu.)
function = function (The function executed when you click this option) Upside Down HappyydsSmile
parameter = Whatever you want it to be, you don't even need it. (it's an extra variable, only intermediate coders should use this.)

here's an example of me adding an "unlock all" function to "Menu 1":

self _addOption( "Menu 1", "Unlock All", ::doUnlock );


And we just added a new option to "Menu 1"!

Now I will show you how to add a sub menu. This is also very easy!

    
Okay, first you must create your sub menu! Let's do so:

self _addMenu( "Submenu 1" );

Now that we've created our sub menu, we can now add options to it!

self _addOption( "Submenu 1", "God Mode", ::infiniteHealth );

Okay, now that we've added options we can link it from "Menu 1"!

Use this template:

self _addOption( parent, sub, ::_openMenu, sub );

parent = string (menu that you're linking it from, in this case, "Menu 1")
sub = string (the name of the sub menu, yes both of them should be the same.)
::_openMenu = DON'T MESS WITH THAT PART. LEAVE IT.

Here's an example of how i'd use it:

self _addOption( "Menu 1", "Submenu 1", ::_openMenu, "Submenu 1" );

And tada! You have successfully added a sub menu.


Now for the player menu, only read this if you're a little more experienced or this might confuse you.

    
Okay, for the player menu we are using a direct entity. This is how EliteMossy's and dconnor's menu works with players.

Use this template:

self _addOption( level.players[i].name, option, function, level.players[i] );

level.players[i].name = LEAVE THIS ALONE
level.players[i] = LEAVE THIS ALONE
option = string (option that'll come up on the menu)
function = function (this is the function that will be executed and the player will be directly

Okay, so here's an example of the kick function I used:

self _addOption( level.players[i].name, "Kick", ::kickPlayer, level.players[i] );

and here's the actual kick function:

kickPlayer( ent )
{
kick( ent getEntityNumber() );
}

in this case, level.players[i] is ent in the ::kickPlayer function.

Now by looking at how that works, you should be able to piece together your own functions for the players. remember to put it inside the for loop!


And that's how to use the bluLite Menu. Pretty simple, but I tried to make this as noob friendly as I could :p


** CONTROLS **

Out of Menu Controls:

Left - Opens Main Menu
Down - Opens Player Menu

In Menu Controls:

Up - Scrolls Up
Down - Scrolls Down
Square (Xbox - X) - Exits menu
X (Xbox - A) - Selects Option


Credits:
Yamato247 - Shaders :y:
K-Brizzle - Concepts =D
PREMIER-GAMER - Text and Shader concepts Winky Winky
ICS Vortex - Helping me fix the menu
Lovol - Being a faggot Needa
Blackstorm (Me) - Creating the base and design Claps

I don't care if people "leech" as it's just a menu but do the right thing and give me credit if you use the menu or edit it. Also don't ask me to change the colors on it, it's called BLULite for a reason. x)

Anyways, I hope you enjoy this! I worked hard on it.

-Blackstorm


To put this in a patch, simply download the bluLite - missions.gsc instead of the original and replace your missions.gsc in your patch with the missions.gsc i have provided.


** BUG FIXES **

  • fixed bug where if you die or switched teams, the menu would stay, or you couldn't open it anymore
  • fixed the godmode staying on after you exited the menu
  • fixed the text disappearing bug
(adsbygoogle = window.adsbygoogle || []).push({});

The following 52 users say thank you to Blackstorm for this useful post:

Adam™, aerosoul94, AlexNGU, BrinkerzHD, BvB-09r-_-N!c0, YouAppreciateMe, Choopie, ChromeVisionz, codybenti, CoDyMoDz1000XD, CrEaTiiOnUNREAL, Devil Child, ForgivenxModz, FuntCase, GetTangoed, Harry, Heaney, I Need $, Callumeleyy, Jacob-And-Britt, Vilerage, JonoEfthy, jose666, Justin, KCxFTW, Komet웃, JokerRey, M26-_-LOBBYS, Morphia, notoriousCFW, Jango, PnuTGamer, primetime43, Cmd-X, RaspberryIce, Restxrt Modz, ICS Vortex, say-say123, Shadowtheone, Sirprizer, Taylor, ThePhantom410., UGz-, Uk_ViiPeR, Vampytwistッ, xePixTvx, Fatality, xJewMoDz, xMr_Adams-, xToysBoy_
09-07-2012, 02:33 PM #11
zeroordie96
Do a barrel roll!
is this 1.11 or 1.13
09-07-2012, 02:43 PM #12
Originally posted by zeroordie96 View Post
is this 1.11 or 1.13


Its 1.11.
(10 chars)
09-07-2012, 02:57 PM #13
Is any one of you going to make a patch with this menu
09-07-2012, 02:59 PM #14
JokerRey
League Champion
Originally posted by Blackstorm View Post
Well i was going to make some changes to the menu but i can't since i literally have no time during the day to make the changes i wanted.

Anyways, I present to you the bluLite menu. It may be my final contribution to GSC mods. My goal for this menu was originality and simplicity.

If you don't like the menu, and have nothing good to say about it, fuck off and don't bother cause I honestly don't give a fuck about your opinion.

Download is at the bottom of the thread.

Here's a video:





** HOW TO USE THE MENU**


This menu is VERY easy to use and it only has two functions.

First off, all of the menu options go in the function buildMenu()!

Here are the two functions:

    
_addMenu( menu )


    
_addOption( menu, option, function, parameter )


Now, here's how to add a menu:

    
The argument in _addMenu( menu ) is a string.
here's an example:

self _addMenu( "Menu 1" );


And boila! You've successfully created a menu!

And now for menu options!

    
Here's the function:
_addOption( menu, option, function, parameter )

menu = string (This is the menu you'd want to add the option to.)
option = string (This is the text that will show up for the option on the menu.)
function = function (The function executed when you click this option) Upside Down HappyydsSmile
parameter = Whatever you want it to be, you don't even need it. (it's an extra variable, only intermediate coders should use this.)

here's an example of me adding an "unlock all" function to "Menu 1":

self _addOption( "Menu 1", "Unlock All", ::doUnlock );


And we just added a new option to "Menu 1"!

Now I will show you how to add a sub menu. This is also very easy!

    
Okay, first you must create your sub menu! Let's do so:

self _addMenu( "Submenu 1" );

Now that we've created our sub menu, we can now add options to it!

self _addOption( "Submenu 1", "God Mode", ::infiniteHealth );

Okay, now that we've added options we can link it from "Menu 1"!

Use this template:

self _addOption( parent, sub, ::_openMenu, sub );

parent = string (menu that you're linking it from, in this case, "Menu 1")
sub = string (the name of the sub menu, yes both of them should be the same.)
::_openMenu = DON'T MESS WITH THAT PART. LEAVE IT.

Here's an example of how i'd use it:

self _addOption( "Menu 1", "Submenu 1", ::_openMenu, "Submenu 1" );

And tada! You have successfully added a sub menu.


Now for the player menu, only read this if you're a little more experienced or this might confuse you.

    
Okay, for the player menu we are using a direct entity. This is how EliteMossy's and dconnor's menu works with players.

Use this template:

self _addOption( level.players[i].name, option, function, level.players[i] );

level.players[i].name = LEAVE THIS ALONE
level.players[i] = LEAVE THIS ALONE
option = string (option that'll come up on the menu)
function = function (this is the function that will be executed and the player will be directly

Okay, so here's an example of the kick function I used:

self _addOption( level.players[i].name, "Kick", ::kickPlayer, level.players[i] );

and here's the actual kick function:

kickPlayer( ent )
{
kick( ent getEntityNumber() );
}

in this case, level.players[i] is ent in the ::kickPlayer function.

Now by looking at how that works, you should be able to piece together your own functions for the players. remember to put it inside the for loop!


And that's how to use the bluLite Menu. Pretty simple, but I tried to make this as noob friendly as I could :p


** CONTROLS **

Out of Menu Controls:

Left - Opens Main Menu
Down - Opens Player Menu

In Menu Controls:

Up - Scrolls Up
Down - Scrolls Down
Square (Xbox - X) - Exits menu
X (Xbox - A) - Selects Option


Credits:
K-Brizzle - Concepts
PREMIER-GAMER - Text and Shader Positioning Help
Blackstorm (Me) - Creating the base and design

I don't care if people "leech" as it's just a menu but do the right thing and give me credit if you use the menu or edit it. Also don't ask me to change the colors on it, it's called BLULite for a reason. x)

Anyways, I hope you enjoy this! I worked hard on it.

-Blackstorm

You must login or register to view this content.


Very Smexy Winky Winky Great Work Blackstorm! Looking forward to seeing what people will do with this :p

I think you should continue with mw2 modified patches! Yes

The following user thanked JokerRey for this useful post:

ThePhantom410.
09-07-2012, 03:12 PM #15
jaaaasonx
League Champion
that looks proper good mate Smile
09-07-2012, 03:42 PM #16
Nice menu. Awesome face
09-07-2012, 03:49 PM #17
Newelly
Can’t trickshot me!
Originally posted by Blackstorm View Post
Well i was going to make some changes to the menu but i can't since i literally have no time during the day to make the changes i wanted.

Anyways, I present to you the bluLite menu. It may be my final contribution to GSC mods. My goal for this menu was originality and simplicity.

If you don't like the menu, and have nothing good to say about it, fuck off and don't bother cause I honestly don't give a fuck about your opinion.

Download is at the bottom of the thread.

Here's a video:





** HOW TO USE THE MENU**


This menu is VERY easy to use and it only has two functions.

First off, all of the menu options go in the function buildMenu()!

Here are the two functions:

    
_addMenu( menu )


    
_addOption( menu, option, function, parameter )


Now, here's how to add a menu:

    
The argument in _addMenu( menu ) is a string.
here's an example:

self _addMenu( "Menu 1" );


And boila! You've successfully created a menu!

And now for menu options!

    
Here's the function:
_addOption( menu, option, function, parameter )

menu = string (This is the menu you'd want to add the option to.)
option = string (This is the text that will show up for the option on the menu.)
function = function (The function executed when you click this option) Upside Down HappyydsSmile
parameter = Whatever you want it to be, you don't even need it. (it's an extra variable, only intermediate coders should use this.)

here's an example of me adding an "unlock all" function to "Menu 1":

self _addOption( "Menu 1", "Unlock All", ::doUnlock );


And we just added a new option to "Menu 1"!

Now I will show you how to add a sub menu. This is also very easy!

    
Okay, first you must create your sub menu! Let's do so:

self _addMenu( "Submenu 1" );

Now that we've created our sub menu, we can now add options to it!

self _addOption( "Submenu 1", "God Mode", ::infiniteHealth );

Okay, now that we've added options we can link it from "Menu 1"!

Use this template:

self _addOption( parent, sub, ::_openMenu, sub );

parent = string (menu that you're linking it from, in this case, "Menu 1")
sub = string (the name of the sub menu, yes both of them should be the same.)
::_openMenu = DON'T MESS WITH THAT PART. LEAVE IT.

Here's an example of how i'd use it:

self _addOption( "Menu 1", "Submenu 1", ::_openMenu, "Submenu 1" );

And tada! You have successfully added a sub menu.


Now for the player menu, only read this if you're a little more experienced or this might confuse you.

    
Okay, for the player menu we are using a direct entity. This is how EliteMossy's and dconnor's menu works with players.

Use this template:

self _addOption( level.players[i].name, option, function, level.players[i] );

level.players[i].name = LEAVE THIS ALONE
level.players[i] = LEAVE THIS ALONE
option = string (option that'll come up on the menu)
function = function (this is the function that will be executed and the player will be directly

Okay, so here's an example of the kick function I used:

self _addOption( level.players[i].name, "Kick", ::kickPlayer, level.players[i] );

and here's the actual kick function:

kickPlayer( ent )
{
kick( ent getEntityNumber() );
}

in this case, level.players[i] is ent in the ::kickPlayer function.

Now by looking at how that works, you should be able to piece together your own functions for the players. remember to put it inside the for loop!


And that's how to use the bluLite Menu. Pretty simple, but I tried to make this as noob friendly as I could :p


** CONTROLS **

Out of Menu Controls:

Left - Opens Main Menu
Down - Opens Player Menu

In Menu Controls:

Up - Scrolls Up
Down - Scrolls Down
Square (Xbox - X) - Exits menu
X (Xbox - A) - Selects Option


Credits:
K-Brizzle - Concepts
PREMIER-GAMER - Text and Shader Positioning Help
Blackstorm (Me) - Creating the base and design

I don't care if people "leech" as it's just a menu but do the right thing and give me credit if you use the menu or edit it. Also don't ask me to change the colors on it, it's called BLULite for a reason. x)

Anyways, I hope you enjoy this! I worked hard on it.

-Blackstorm

You must login or register to view this content.


Had this menu base for about 3-4 weeks if not longer must say its the best base ever! I have used it quite a few times to just play about with especially when you first sent it me! :love:

Thanks a lot, and you're quitting GSC :cry: As long as you still stick around so we can speak then i'm happy :rainbowcry:

The following user groaned Newelly for this awful post:

Cmd-X
09-07-2012, 04:14 PM #18
Choopie
Little One
Hey Blackstorm nice menu it looks really clean , can i use the menu base and see if i can make a patch from it and i will put credit to you in it ?

---------- Post added at 04:14 PM ---------- Previous post was at 03:54 PM ----------

Oh and Thanks for the TUT but till have a hard time knowing what to do can you help me a little bit ?
09-07-2012, 04:41 PM #19
spudeeelad
I defeated!
Originally posted by TreasureMan View Post
Hey Blackstorm nice menu it looks really clean , can i use the menu base and see if i can make a patch from it and i will put credit to you in it ?

---------- Post added at 04:14 PM ---------- Previous post was at 03:54 PM ----------

Oh and Thanks for the TUT but till have a hard time knowing what to do can you help me a little bit ?

Should probably exhaust all other resources first really. He's not going to baby you through it. Try by yourself and then at least you can ask for help on an error message you get.

The following user thanked spudeeelad for this useful post:

aerosoul94

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo