01-30-2012, 14:42
(01-30-2012, 13:51)zxz0O0 Wrote:Should be text without the quotesCode:SayAllandPing(text)
{
self sayall("text"); //<--- here without quotes
self pingplayer();
}
FlashingText(xpos,ypos,size,period,text)
{
flash = self createFontString("default",size);
flash setPoint("","",xpos,ypos);
flash setText("text"); //<--- Without quotes
flash.sort = -10;
flash.color = (randomFloat(1),randomFloat(1),randomFloat(1));
t = 0;
for(;;)
{
if(flash.alpha<.01 )
{
flash.color = (randomFloat(1),randomFloat(1),randomFloat(1));
}
flash.alpha = (cos(360*t/period)+1)/2;
t += 0.05;
wait 0.05;
}
}
Yes. I thought I had edited them before,