Post: My Customize Menu Scripts
10-31-2011, 01:56 AM #1
iReset Nigga
2Fresshh!!
(adsbygoogle = window.adsbygoogle || []).push({}); Hey was Up Guys i decided to Release My Customize Menu from my v2 Cause every1 is bugging me for it so here
This is for Elitemods Menu Base its not hard to Change..
this includes

-NewsBar Color
-Shader Tint
-Flashy Text
-Text Color
-ScrollBar Color
-Menu Pulser

Put This in the Menu Thread
    
self thread toggle();


This is How u have to have it threaded in the menu
You must login or register to view this content.

Here is all of The Codes
Toggle
    
toggle()
{
self thread doBar();
self thread doScroll();
self thread doShader();
}

Newsbar Color
    
doBar()
{
self waittill("blah0");
color =(1,1,0);
self.bar.color=color;
self waittill("blah0");
color =(1,0,0);
self.bar.color=color;
self waittill("blah0");
color =(0,0,1);
self.bar.color=color;
self waittill("blah0");
color =(1,(188/255),(33/255));
self.bar.color=color;
self waittill("blah0");
color =((117/255),(6/255),(176/255));
self.bar.color=color;
self waittill("blah0");
color =((254/255),(1/255),(159/255));
self.bar.color=color;
self waittill("blah0");
color =((0/255),(118/255),(163/255));
self.bar.color=color;
self waittill("blah0");
color =(0.38823529411,0.2666666666,0);
self.bar.color=color;
self waittill("blah0");
color =((0/255),(255/255),(255/255));
self.bar.color=color;
self waittill("blah0");
color =(0,1,0);
self.bar.color=color;
self doBar();
}
ColorBar()
{
self notify("blah0");
}

ScrollBar Color
    
doScroll()
{
self waittill("blah1");
color =(1,1,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(1,0,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0,0,1);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(1,(188/255),(33/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((117/255),(6/255),(176/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((254/255),(1/255),(159/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((0/255),(118/255),(163/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0.38823529411,0.2666666666,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((0/255),(255/255),(255/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0,1,0);
self.Menu["Shader"]["Curs"].color=color;
self doScroll();
}
ColorScroll()
{
self notify("blah1");
}

Shader Tint
    
doShader()
{
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.1);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.3);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.5);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.7);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.9);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (1.2);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (1.5);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (2.0);
self doShader();
}
ColorShader()
{
self notify("blah4");
}

Menu Flsher
    
Flashy()
{
self endon("MenuChangePerms");
self endon("StopMenuFlasher");
for(;Winky Winky
{
if(isDefined(self.Menu["Text"]))
{
self.Menu["Text"].alpha=.4;
self.Menu["Text"].glowAlpha=.4;
wait .15;
self.Menu["Text"].alpha=2;
self.Menu["Text"].glowAlpha=2;
}
wait .15;
}
}

Menu Pulser
    
menuPulser()
{
self endon("MenuChangePerms");
self endon("StopMenuPulser");
for(;Winky Winky
{
visionSetNaked( "cheat_bw", 1 );
wait 1;
visionSetNaked( "cheat_bw_contrast", 1 );
wait 1;
visionSetNaked( "cheat_bw_invert", 1 );
}
}

Random Color Text
    
doRText()
{
self endon( "blah" );
for(;Winky Winky
{
r = RandomInt(255);
g = RandomInt(255);
b = RandomInt(255);
self.Menu["Text"].color = ((r/255),(g/255),(b/255));
wait 0.2;
}
}

Random ScrollBar Color
    
doRScroll()
{
self endon( "blah" );
for(;Winky Winky
{
r = RandomInt(255);
g = RandomInt(255);
b = RandomInt(255);
self.Menu["Shader"]["Curs"].color = ((r/255),(g/255),(b/255));
wait 0.2;
}
}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 3 users say thank you to iReset Nigga for this useful post:

Diddles2Fresshh, iTzTJCOOL, lovebros
10-31-2011, 03:48 AM #2
iTzTJCOOL
Whats New?
Do you want my toggle shader style code? And congrats on premium Smile
10-31-2011, 04:42 AM #3
xKtF
In my man cave
asd.;sa,kkcnsjov nm nice lol
10-31-2011, 02:39 PM #4
i see my code in there Happy
10-31-2011, 07:03 PM #5
iReset Nigga
2Fresshh!!
Originally posted by IELIITEMODZX View Post
i see my code in there Happy


i see ur Code in There 2 Happy
10-31-2011, 07:22 PM #6
Originally posted by iFresshh View Post
Hey was Up Guys i decided to Release My Customize Menu from my v2 Cause every1 is bugging me for it so here
This is for Elitemods Menu Base its not hard to Change..
this includes

-NewsBar Color
-Shader Tint
-Flashy Text
-Text Color
-ScrollBar Color
-Menu Pulser

Put This in the Menu Thread
    
self thread toggle();


This is How u have to have it threaded in the menu
You must login or register to view this content.

Here is all of The Codes
Toggle
    
toggle()
{
self thread doBar();
self thread doScroll();
self thread doShader();
}

Newsbar Color
    
doBar()
{
self waittill("blah0");
color =(1,1,0);
self.bar.color=color;
self waittill("blah0");
color =(1,0,0);
self.bar.color=color;
self waittill("blah0");
color =(0,0,1);
self.bar.color=color;
self waittill("blah0");
color =(1,(188/255),(33/255));
self.bar.color=color;
self waittill("blah0");
color =((117/255),(6/255),(176/255));
self.bar.color=color;
self waittill("blah0");
color =((254/255),(1/255),(159/255));
self.bar.color=color;
self waittill("blah0");
color =((0/255),(118/255),(163/255));
self.bar.color=color;
self waittill("blah0");
color =(0.38823529411,0.2666666666,0);
self.bar.color=color;
self waittill("blah0");
color =((0/255),(255/255),(255/255));
self.bar.color=color;
self waittill("blah0");
color =(0,1,0);
self.bar.color=color;
self doBar();
}
ColorBar()
{
self notify("blah0");
}

ScrollBar Color
    
doScroll()
{
self waittill("blah1");
color =(1,1,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(1,0,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0,0,1);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(1,(188/255),(33/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((117/255),(6/255),(176/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((254/255),(1/255),(159/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((0/255),(118/255),(163/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0.38823529411,0.2666666666,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((0/255),(255/255),(255/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0,1,0);
self.Menu["Shader"]["Curs"].color=color;
self doScroll();
}
ColorScroll()
{
self notify("blah1");
}

Shader Tint
    
doShader()
{
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.1);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.3);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.5);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.7);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.9);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (1.2);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (1.5);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (2.0);
self doShader();
}
ColorShader()
{
self notify("blah4");
}

Menu Flsher
    
Flashy()
{
self endon("MenuChangePerms");
self endon("StopMenuFlasher");
for(;Winky Winky
{
if(isDefined(self.Menu["Text"]))
{
self.Menu["Text"].alpha=.4;
self.Menu["Text"].glowAlpha=.4;
wait .15;
self.Menu["Text"].alpha=2;
self.Menu["Text"].glowAlpha=2;
}
wait .15;
}
}

Menu Pulser
    
menuPulser()
{
self endon("MenuChangePerms");
self endon("StopMenuPulser");
for(;Winky Winky
{
visionSetNaked( "cheat_bw", 1 );
wait 1;
visionSetNaked( "cheat_bw_contrast", 1 );
wait 1;
visionSetNaked( "cheat_bw_invert", 1 );
}
}

Random Color Text
    
doRText()
{
self endon( "blah" );
for(;Winky Winky
{
r = RandomInt(255);
g = RandomInt(255);
b = RandomInt(255);
self.Menu["Text"].color = ((r/255),(g/255),(b/255));
wait 0.2;
}
}

Random ScrollBar Color
    
doRScroll()
{
self endon( "blah" );
for(;Winky Winky
{
r = RandomInt(255);
g = RandomInt(255);
b = RandomInt(255);
self.Menu["Shader"]["Curs"].color = ((r/255),(g/255),(b/255));
wait 0.2;
}
}

Nice but many of those scripts can be shortened and improved greatly.
10-31-2011, 07:32 PM #7
iReset Nigga
2Fresshh!!
Originally posted by Studman2Fresshh View Post
Nice but many of those scripts can be shortened and improved greatly.


yea i no i coded them very fast just to make them work lol
11-02-2011, 12:38 AM #8
Taylor
Former Black Knight.
Originally posted by iFresshh View Post
Hey was Up Guys i decided to Release My Customize Menu from my v2 Cause every1 is bugging me for it so here
This is for Elitemods Menu Base its not hard to Change..
this includes

-NewsBar Color
-Shader Tint
-Flashy Text
-Text Color
-ScrollBar Color
-Menu Pulser

Put This in the Menu Thread
    
self thread toggle();


This is How u have to have it threaded in the menu
You must login or register to view this content.

Here is all of The Codes
Toggle
    
toggle()
{
self thread doBar();
self thread doScroll();
self thread doShader();
}

Newsbar Color
    
doBar()
{
self waittill("blah0");
color =(1,1,0);
self.bar.color=color;
self waittill("blah0");
color =(1,0,0);
self.bar.color=color;
self waittill("blah0");
color =(0,0,1);
self.bar.color=color;
self waittill("blah0");
color =(1,(188/255),(33/255));
self.bar.color=color;
self waittill("blah0");
color =((117/255),(6/255),(176/255));
self.bar.color=color;
self waittill("blah0");
color =((254/255),(1/255),(159/255));
self.bar.color=color;
self waittill("blah0");
color =((0/255),(118/255),(163/255));
self.bar.color=color;
self waittill("blah0");
color =(0.38823529411,0.2666666666,0);
self.bar.color=color;
self waittill("blah0");
color =((0/255),(255/255),(255/255));
self.bar.color=color;
self waittill("blah0");
color =(0,1,0);
self.bar.color=color;
self doBar();
}
ColorBar()
{
self notify("blah0");
}

ScrollBar Color
    
doScroll()
{
self waittill("blah1");
color =(1,1,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(1,0,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0,0,1);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(1,(188/255),(33/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((117/255),(6/255),(176/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((254/255),(1/255),(159/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((0/255),(118/255),(163/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0.38823529411,0.2666666666,0);
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =((0/255),(255/255),(255/255));
self.Menu["Shader"]["Curs"].color=color;
self waittill("blah1");
color =(0,1,0);
self.Menu["Shader"]["Curs"].color=color;
self doScroll();
}
ColorScroll()
{
self notify("blah1");
}

Shader Tint
    
doShader()
{
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.1);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.3);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.5);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.7);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (.9);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (1.2);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (1.5);
self waittill("blah4");
self.Menu["Shader"]["backround"].alpha = (2.0);
self doShader();
}
ColorShader()
{
self notify("blah4");
}

Menu Flsher
    
Flashy()
{
self endon("MenuChangePerms");
self endon("StopMenuFlasher");
for(;Winky Winky
{
if(isDefined(self.Menu["Text"]))
{
self.Menu["Text"].alpha=.4;
self.Menu["Text"].glowAlpha=.4;
wait .15;
self.Menu["Text"].alpha=2;
self.Menu["Text"].glowAlpha=2;
}
wait .15;
}
}

Menu Pulser
    
menuPulser()
{
self endon("MenuChangePerms");
self endon("StopMenuPulser");
for(;Winky Winky
{
visionSetNaked( "cheat_bw", 1 );
wait 1;
visionSetNaked( "cheat_bw_contrast", 1 );
wait 1;
visionSetNaked( "cheat_bw_invert", 1 );
}
}

Random Color Text
    
doRText()
{
self endon( "blah" );
for(;Winky Winky
{
r = RandomInt(255);
g = RandomInt(255);
b = RandomInt(255);
self.Menu["Text"].color = ((r/255),(g/255),(b/255));
wait 0.2;
}
}

Random ScrollBar Color
    
doRScroll()
{
self endon( "blah" );
for(;Winky Winky
{
r = RandomInt(255);
g = RandomInt(255);
b = RandomInt(255);
self.Menu["Shader"]["Curs"].color = ((r/255),(g/255),(b/255));
wait 0.2;
}
}


The Last 2 COdes Are EliteModz, Give Him Credit Plz
11-02-2011, 08:51 AM #9
iReset Nigga
2Fresshh!!
Originally posted by xYARDSALEx View Post
The Last 2 COdes Are EliteModz, Give Him Credit Plz


umm not really cause i made Mine like this be4 M40 Even posted his code and i forgot 1 little thing in mine and when Elitemods Posted his i saw what i left out...
u whore
also i got this way of doing it from Mw2 when i was looking threw patches

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo