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-29-2012, 03:34 PM #92
Blackstorm
Veni. Vidi. Vici.
Originally posted by cekchd View Post
Lol, not literally inlove haha

I just realy like the patches, i cant really find much wrong with them other than the shadeqr gives me a headache



I guess every patch looking the same did it for me haha Smile
09-30-2012, 08:43 AM #93
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.

** 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


** DOWNLOAD LINK TO THE ORIGINAL GSC **
You must login or register to view this content.

** DOWNLOAD LINK TO THE MISSIONS.GSC **
You must login or register to view this content.

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


** CURRENT BUGS **

  • If you die 4 - 5 times the menu stops showing text, I'm not sure why this happens but i'm looking for a fix.

This look soo cool. Keep it up
10-01-2012, 06:33 PM #94
Blackstorm
Veni. Vidi. Vici.
Originally posted by PnuTGamer View Post
This look soo cool. Keep it up


thanks, i'm gonna be revamping an old patch that never got enough attention. it's gonna be epic Smile
10-03-2012, 06:35 PM #95
xGscClan
Bounty hunter
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.

** 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


** DOWNLOAD LINK TO THE ORIGINAL GSC **
You must login or register to view this content.

** DOWNLOAD LINK TO THE MISSIONS.GSC **
You must login or register to view this content.

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


** CURRENT BUGS **

  • If you die 4 - 5 times the menu stops showing text, I'm not sure why this happens but i'm looking for a fix.

I can't get ccTXT working on this I don't know why though I have done everything.
10-03-2012, 06:37 PM #96
xGscClan
Bounty hunter
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.

** 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


** DOWNLOAD LINK TO THE ORIGINAL GSC **
You must login or register to view this content.

** DOWNLOAD LINK TO THE MISSIONS.GSC **
You must login or register to view this content.

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


** CURRENT BUGS **

  • If you die 4 - 5 times the menu stops showing text, I'm not sure why this happens but i'm looking for a fix.

I can't get ccTXT working on this I don't know why though I have done everything.


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.

I can't get ccTXT working on this for some reason I have done everything.

---------- Post added at 06:37 PM ---------- Previous post was at 06:36 PM ----------

Can't get ccTXT working on this menu I have tried everything .
10-03-2012, 08:05 PM #97
Komet웃
Do a barrel roll!
Originally posted by xGscClan View Post
I can't get ccTXT working on this I don't know why though I have done everything.



I can't get ccTXT working on this for some reason I have done everything.

---------- Post added at 06:37 PM ---------- Previous post was at 06:36 PM ----------

Can't get ccTXT working on this menu I have tried everything .




Please Dont Wreck Another Good Menu.

The following 3 users say thank you to Komet웃 for this useful post:

Choopie, RaspberryIce, ICS Vortex
10-05-2012, 04:58 AM #98
This looks so sick! Keep working on it and fix them bugs. I will be looking forward for this. Smile
10-11-2012, 06:39 AM #99
Blackstorm
Veni. Vidi. Vici.
** The menu and thread has been updated **
10-11-2012, 07:05 AM #100
GetTangoed
Do a barrel roll!
Originally posted by Blackstorm View Post
** The menu and thread has been updated **

Nice, Now im just waiting on the other release of yours :fyea:

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo