11-05-2011, 20:33
Hi,
I released this code on another website, so, Ill put it here too,
Use:
Code:
I released this code on another website, so, Ill put it here too,
Use:
Code:
self.text = self createfontstring("default",1.7,self);
self.text setpoint("","",0,0);
self.text settext("This is Flashy but OMA is cooler");
self MakeFlashyText(self.text);
Code:
Code:
MakeFlashyText(elem)
{
self endon("death");
self endon("disconnect");
for(;;)
{
elem.color = (randomfloat(1),randomfloat(1),randomfloat(1));
wait 0.05;
}
}