Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- lampo()
- {
- // accende
- llSetPrimitiveParams([ PRIM_GLOW, ALL_SIDES, 1 , PRIM_POINT_LIGHT, TRUE, llGetColor(0), 1, 10.0, 0.6 ]);
- // spegne
- llSetPrimitiveParams([ PRIM_GLOW, ALL_SIDES, 0 , PRIM_POINT_LIGHT, FALSE, llGetColor(0), 1, 10.0, 0.6 ]);
- }
- default
- {
- state_entry()
- {
- llSetTimerEvent(10);
- }
- timer()
- {
- lampo(); lampo();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement