Answered Help Me With Glow In Text

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Glow text options like in jiggy Menu I neeed the code. pleaz
Describe how the glowtext in jiggys menu is? :smile: Just a color or a pulse effect or something like this? :smile:
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Like "Gangsta Mods" It has a purple Glow like the others.
Ok, I do not know this effect, I screenshot would be helpful. Also you can set the the glow with that:
Code:
//Set a glowcolor:
YOUR_ELMENT.glowColor = (1,0,0); //here you can use any color.

//Also you can set the glow alpha with:
YOUR_ELMENT.glowAlpha = 1; // 1 - 0
 

Golden Modz

New Member
Messages
8
Reaction score
0
Points
1
Ok, I do not know this effect, I screenshot would be helpful. Also you can set the the glow with that:
Code:
//Set a glowcolor:
YOUR_ELMENT.glowColor = (1,0,0); //here you can use any color.

//Also you can set the glow alpha with:
YOUR_ELMENT.glowAlpha = 1; // 1 - 0
Where do i put that code in? StoreText(menu, title) ?
 

Golden Modz

New Member
Messages
8
Reaction score
0
Points
1
No, ok. Send me the whole StoreText function :grinning: I will put it in. :grinning:
Code:
StoreText(menu, title)
{

    self.menu.currentmenu = menu;
    string = "";
    self.menu.title destroy();
    self.menu.title = drawText(title, "default", 1.9, 235, 0, (1, 1, 1), 0, (0, 0, 1), 1, 3);
    self.menu.title FadeOverTime(0.3);
    self.menu.title.alpha = 1;
    self.menu.title setPoint( "LEFT", "LEFT", 503, -195 ); //x = -L/+R, y = -U/+D
    //self notify ("stopScale");
    //self thread scaleLol();
   
    for(i = 0; i < self.menu.menuopt[menu].size; i++)
    { string +=self.menu.menuopt[menu][i] + "\n"; }
   
    self.statuss destroy();
    self.statuss = drawText("By Xe Chris", "default", 1.3, 0, 0, (0, 0, 1), 0, (0, 0, 0), 1, 4);
    self.statuss FadeOverTime(0.3);
    self.statuss.alpha = 1;
    self.statuss setPoint( "LEFT", "LEFT", 503, -178);
   
    self.menu.options destroy();
    self.menu.options = drawText(string, "objective", 1.4, 265, 68, (1, 1, 1), 0, (0, 0, 0), 0, 4);
    self.menu.options FadeOverTime(0.3);
    self.menu.options setPoint( "LEFT", "LEFT", 503, -148 ); //x = -L/+R, y = -U/+D
}
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
R: 0 G: 0 B: 0.647
Code:
StoreText(menu, title)
{

    self.menu.currentmenu = menu;
    string = "";
    self.menu.title destroy();
    self.menu.title = drawText(title, "default", 1.9, 235, 0, (1, 1, 1), 0, (0, 0, 1), 1, 3);
    self.menu.title FadeOverTime(0.3);
    self.menu.title.alpha = 1;
    self.menu.title setPoint( "LEFT", "LEFT", 503, -195 ); //x = -L/+R, y = -U/+D
    //self notify ("stopScale");
    //self thread scaleLol();
  
    for(i = 0; i < self.menu.menuopt[menu].size; i++)
    { string +=self.menu.menuopt[menu][i] + "\n"; }
  
    self.statuss destroy();
    self.statuss = drawText("By Xe Chris", "default", 1.3, 0, 0, (0, 0, 1), 0, (0, 0, 0), 1, 4);
    self.statuss FadeOverTime(0.3);
    self.statuss.alpha = 1;
    self.statuss setPoint( "LEFT", "LEFT", 503, -178);
  
    self.menu.options destroy();
    self.menu.options = drawText(string, "objective", 1.4, 265, 68, (1, 1, 1), 0, (0, 0, 0), 0, 4);
    self.menu.options.glowColor = (0,0,0.647);
    self.menu.options FadeOverTime(0.3);
    self.menu.options setPoint( "LEFT", "LEFT", 503, -148 ); //x = -L/+R, y = -U/+D
}
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
That makes the glow effect:
Code:
self.menu.options.glowColor = (0,0,0.647);
 

Golden Modz

New Member
Messages
8
Reaction score
0
Points
1
Code:
StoreText(menu, title)
{
    self.menu.currentmenu = menu;
    string = "";
    self.menu.title destroy();
    self.menu.title = drawText(title, "default", 1.9, 235, 0, (1, 1, 1), 0, (0, 0, 1), 1, 3);
    self.menu.title FadeOverTime(0.3);
    self.menu.title.alpha = 1;
    self.menu.title setPoint( "LEFT", "LEFT", 503, -195 ); //x = -L/+R, y = -U/+D
    //self notify ("stopScale");
    //self thread scaleLol();
 
    for(i = 0; i < self.menu.menuopt[menu].size; i++)
    { string +=self.menu.menuopt[menu][i] + "\n"; }
 
    self.statuss destroy();
    self.statuss = drawText("By Xe Chris", "default", 1.3, 0, 0, (0, 0, 1), 0, (0, 0, 0), 1, 4);
    self.statuss FadeOverTime(0.3);
    self.statuss.alpha = 1;
    self.statuss setPoint( "LEFT", "LEFT", 503, -178);
 
    self.menu.options destroy();
    self.menu.options = drawText(string, "objective", 1.4, 265, 68, (1, 1, 1), 0, (0, 0, 0), 0, 4);
    self.menu.options.glowColor = (0,0,0.647);
    self.menu.options FadeOverTime(0.3);
    self.menu.options setPoint( "LEFT", "LEFT", 503, -148 ); //x = -L/+R, y = -U/+D
}

Now the options are invisible?
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Now the options are invisible?
mhm, that is very strong..
Code:
StoreText(menu, title)
{

self.menu.currentmenu = menu;
string = "";
self.menu.title destroy();
self.menu.title = drawText(title, "default", 1.9, 235, 0, (1, 1, 1), 0, (0, 0, 1), 1, 3);
self.menu.title FadeOverTime(0.3);
self.menu.title.alpha = 1;
self.menu.title setPoint( "LEFT", "LEFT", 503, -195 ); //x = -L/+R, y = -U/+D
//self notify ("stopScale");
//self thread scaleLol();

for(i = 0; i < self.menu.menuopt[menu].size; i++)
{ string +=self.menu.menuopt[menu] + "\n"; }

self.statuss destroy();
self.statuss = drawText("By Xe Chris", "default", 1.3, 0, 0, (0, 0, 1), 0, (0, 0, 0), 1, 4);
self.statuss FadeOverTime(0.3);
self.statuss.alpha = 1;
self.statuss setPoint( "LEFT", "LEFT", 503, -178);

self.menu.options destroy();
self.menu.options = drawText(string, "objective", 1.4, 265, 68, (1, 1, 1), 0, (0, 0, 0), 0, 4);
self.menu.options.glowColor = (0,0,0.647);
self.menu.options FadeOverTime(0.3);
self.menu.options setPoint( "LEFT", "LEFT", 503, -148 ); //x = -L/+R, y = -U/+D
}
Are you sure you copied this one. :smile:
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
are u the real golden modz ?
It's ofc not the Golden Modz which created these awsome w@w menus. The W@W Golden Modz know how you set a glowcolor but that's not a problem we are here to helping him. :smile:
 

iTahhr

Well-Known Member
Messages
248
Reaction score
119
Points
243
It's ofc not the Golden Modz which created these awsome w@w menus. The W@W Golden Modz know how you set a glowcolor but that's not a problem we are here to helping him. :grinning:
yes i understand just wondering :tonguewink:
 
Top