10-31-2011, 14:39
Hi
This is a tutorial of a command and also I explain how to obtain a text with the style of the one I used here: http://www.itsmods.com/forum/Thread-Unde...-Menu.html
The command setpulsefx what it does is to make the text appear like in notify texts, one letter after another with a certain sound:
And this 2 variables will make the border of the text:
I hope someone has learned something new,
This is a tutorial of a command and also I explain how to obtain a text with the style of the one I used here: http://www.itsmods.com/forum/Thread-Unde...-Menu.html
Code:
self.text = self createfontstring("default",1.7,self);
self.text setpulsefx(100,6000000000,900000000000);
self.text setpoint("","",0,-170);
self.text settext("OMA is the best");
self.text.color = (1,1,1);
self.text.sort = 15;
self.text.alpha = 1;
self.text.foreground = true;
self.text.glowcolor = (0,0,0.8);
self.text.glowalpha = 1;
self.text setparent(level.uiParent);
The command setpulsefx what it does is to make the text appear like in notify texts, one letter after another with a certain sound:
Code:
text setpulsefx(speed,decay start,decay duration);
And this 2 variables will make the border of the text:
Code:
text.glowcolor = (Red,Green,Blue);
text.glowalpha = 1;
I hope someone has learned something new,
Spoiler (Click to View)