Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Need Flash or Blink Script

Nella Drillon
Registered User
Join date: 18 Jul 2006
Posts: 49
09-15-2008 21:46
I would like a Flash or blink script please. I am a clothes designer on SL and I wanted a "NEW" sign to just blink like this http://www.slexchange.com/modules.php?name=Marketplace&file=item&ItemID=390721
Very Keynes
LSL is a Virus
Join date: 6 May 2006
Posts: 484
09-16-2008 00:27
It is just an animated Texture. Take a look at this Wiki entry

as a clothes designer i would assume you have the tools and skill to produce the texture for the animation, you would then need a single line script using LlSetTextureAnim to cycle through the animation frames. In fact you could even delete the script once the animation starts.

EDIT: I dropped a working version on you in world as its hard to explain without the Texture.
this is the script which i then deleted to keep lag down:

CODE

default
{
state_entry()
{
llSetTextureAnim(ANIM_ON | LOOP, ALL_SIDES, 1, 4, 0, 2, 1.5);
}
}


look at the wiki in conjunction with the texture and you should understand how it works.