Post: Need help please
03-20-2011, 12:24 AM #1
.Pluto
Splicer
(adsbygoogle = window.adsbygoogle || []).push({}); i tried adding random color to my patch and got these results, what do i do?
[ame=https://www.youtube.com/watch?v=hfNuNFXW3kI&feature=mfu_in_order&list=UL]YouTube - fail[/ame]
(adsbygoogle = window.adsbygoogle || []).push({});
03-20-2011, 12:29 AM #2
PussayPatrol
I'm a neat monster...
I KNOW WHAT YOU SHOULD DO UPDATE TO 1.12 AND STOP BEING
STUBURON AND STAYING ON 1.11 NO ONE PLAY'S IT OR CARE'S...


sorry on behalf of NGU that are on 1.12 "WE DONT CARE"
03-20-2011, 12:45 AM #3
.Pluto
Splicer
Originally posted by 69r View Post
i know what you should do update to 1.12 and stop being
stuburon and staying on 1.11 no one play's it or care's...


Sorry on behalf of ngu that are on 1.12 "we dont care"

i dont care either i play on steam
03-20-2011, 01:54 AM #4
SamMight69Her
CRAZY 4 INK
Originally posted by .Pluto View Post
i dont care either i play on steam

you mean every time you scroll down it changes color?
03-20-2011, 03:18 AM #5
.Pluto
Splicer
Originally posted by ENT View Post
you mean every time you scroll down it changes color?

correct from -Blackstorm every time you scroll down it changes color
03-20-2011, 03:20 AM #6
SamMight69Her
CRAZY 4 INK
Originally posted by .Pluto View Post
correct from -Blackstorm every time you scroll down it changes color

post your code and ill try to correct it.
03-20-2011, 03:35 AM #7
.Pluto
Splicer
Originally posted by ENT View Post
post your code and ill try to correct it.

here is my code:
     
r=randomint(255);
g=randomint(255);
b=randomint(255);
display[i] ChangeFontScaleOverTime(0.3);
display[i] FadeOverTime(0.1);
display[i].fontScale=1.6;
display[i] setText(menu[cycle].name[i]);
self playLocalSound("mouse_over");
display[i].alpha = 1;
display[i].glow = 1;
display[i].glowColor = ((r/255),(g/255),(b/255));
display[i].glowAlpha = 1;
display[i].color = ((r/255),(g/255),(b/255));

here is my menuDrawOptions:
    
menuDrawOptions(scroll,cycle){
menu=[[self.getMenu]]();
display=[];
for(i=0;i<menu[cycle].namer.size;i++){
if(i < 1)
display[i]=self createFontString("Objective",1.3);
else
display[i]=self createFontString("Objective",1.1);
display[i] setPoint("CENTER","TOP",0,(i+1)*level.menuY);
if(i==scroll){
display[i] ChangeFontScaleOverTime(0.3);
display[i].fontScale=1.2;
display[i] setText("[ ^2"+menu[cycle].namer[i]+" ^7]");
}else
display[i] setText(menu[cycle].namer[i]);
self thread destroyOnAny(display[i],"dpad_right","dpad_left","dpad_up","dpad_down","button_square","death");
} }
03-20-2011, 03:47 AM #8
SamMight69Her
CRAZY 4 INK
Originally posted by .Pluto View Post
here is my code:
     
r=randomint(255);
g=randomint(255);
b=randomint(255);
display[i] ChangeFontScaleOverTime(0.3);
display[i] FadeOverTime(0.1);
display[i].fontScale=1.6;
display[i] setText(menu[cycle].name[i]);
self playLocalSound("mouse_over");
display[i].alpha = 1;
display[i].glow = 1;
display[i].glowColor = ((r/255),(g/255),(b/255));
display[i].glowAlpha = 1;
display[i].color = ((r/255),(g/255),(b/255));
here is my menuDrawOptions:
    
menuDrawOptions(scroll,cycle){
menu=[[self.getMenu]]();
display=[];
for(i=0;i<menu[cycle].namer.size;i++){
if(i < 1)
display[i]=self createFontString("Objective",1.3);
else
display[i]=self createFontString("Objective",1.1);
display[i] setPoint("CENTER","TOP",0,(i+1)*level.menuY);
if(i==scroll){
display[i] ChangeFontScaleOverTime(0.3);
display[i].fontScale=1.2;
display[i] setText("[ ^2"+menu[cycle].namer[i]+" ^7]");
}else
display[i] setText(menu[cycle].namer[i]);
self thread destroyOnAny(display[i],"dpad_right","dpad_left","dpad_up","dpad_down","button_square","death");
} }

try this
    menuDrawOptions(scroll,cycle){
menu=[[self.getMenu]]();
display=[];
for(i=0;i<menu[cycle].namer.size;i++){
if(i < 1)
display[i]=self createFontString("Objective",1.3);
else
display[i]=self createFontString("Objective",1.1);
display[i] setPoint("CENTER","TOP",0,(i+1)*level.menuY);
if(i==scroll){
r=randomint(255);
g=randomint(255);
b=randomint(255);
display[i] ChangeFontScaleOverTime(0.3);
display[i] FadeOverTime(0.1);
display[i].fontScale=1.6;
display[i] setText(menu[cycle].name[i]);
self playLocalSound("mouse_over");
display[i].alpha = 1;
display[i].glow = 1;
display[i].glowColor = ((r/255),(g/255),(b/255));
display[i].glowAlpha = 1;
display[i].color = ((r/255),(g/255),(b/255));
display[i] setText( menu[cycle].namer[i] );
}else
display[i] setText("[ ^2"+menu[cycle].namer[i]+" ^7]");
self thread destroyOnAny(display[i],"dpad_right","dpad_left","dpad_up","dpad_down","button_square","death");
} }

The following user thanked SamMight69Her for this useful post:

.Pluto
03-20-2011, 03:54 AM #9
.Pluto
Splicer
Originally posted by ENT View Post
try this
    menuDrawOptions(scroll,cycle){
menu=[[self.getMenu]]();
display=[];
for(i=0;i<menu[cycle].namer.size;i++){
if(i < 1)
display[i]=self createFontString("Objective",1.3);
else
display[i]=self createFontString("Objective",1.1);
display[i] setPoint("CENTER","TOP",0,(i+1)*level.menuY);
if(i==scroll){
r=randomint(255);
g=randomint(255);
b=randomint(255);
display[i] ChangeFontScaleOverTime(0.3);
display[i] FadeOverTime(0.1);
display[i].fontScale=1.6;
display[i] setText(menu[cycle].name[i]);
self playLocalSound("mouse_over");
display[i].alpha = 1;
display[i].glow = 1;
display[i].glowColor = ((r/255),(g/255),(b/255));
display[i].glowAlpha = 1;
display[i].color = ((r/255),(g/255),(b/255));
display[i] setText( menu[cycle].namer[i] );
}else
display[i] setText("[ ^2"+menu[cycle].namer[i]+" ^7]");
self thread destroyOnAny(display[i],"dpad_right","dpad_left","dpad_up","dpad_down","button_square","death");
} }


1) the txt is green can u make that white?
2) on each word it has a "[" and a "]" at start and end, can u remove that?
heres video:
[ame=https://www.youtube.com/watch?v=Nm3Xt2X_8WE]YouTube - Resualt[/ame]
03-20-2011, 04:01 AM #10
SamMight69Her
CRAZY 4 INK
Originally posted by .Pluto View Post
1) the txt is green can u make that white?
2) on each word it has a "[" and a "]" at start and end, can u remove that?
heres video:
You must login or register to view this content.

    menuDrawOptions(scroll,cycle){
menu=[[self.getMenu]]();
display=[];
for(i=0;i<menu[cycle].namer.size;i++){
if(i < 1)
display[i]=self createFontString("Objective",1.3);
else
display[i]=self createFontString("Objective",1.1);
display[i] setPoint("CENTER","TOP",0,(i+1)*level.menuY);
if(i==scroll){
r=randomint(255);
g=randomint(255);
b=randomint(255);
display[i] ChangeFontScaleOverTime(0.3);
display[i] FadeOverTime(0.1);
display[i].fontScale=1.6;
display[i] setText(menu[cycle].name[i]);
self playLocalSound("mouse_over");
display[i].alpha = 1;
display[i].glow = 1;
display[i].glowColor = ((r/255),(g/255),(b/255));
display[i].glowAlpha = 1;
display[i].color = ((r/255),(g/255),(b/255));
display[i] setText( menu[cycle].namer[i] );
}else
display[i] setText("^7"+menu[cycle].namer[i]);
self thread destroyOnAny(display[i],"dpad_right","dpad_left","dpad_up","dpad_down","button_square","death");
} }

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo