Advertisement
salahzar

sal intermittenza faro 2 lampi

Apr 11th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. lampo()
  3. {
  4.     // accende
  5.     llSetPrimitiveParams([ PRIM_GLOW, ALL_SIDES, 1 , PRIM_POINT_LIGHT, TRUE, llGetColor(0), 1, 10.0, 0.6 ]);
  6.     // spegne
  7.     llSetPrimitiveParams([ PRIM_GLOW, ALL_SIDES, 0 , PRIM_POINT_LIGHT, FALSE, llGetColor(0), 1, 10.0, 0.6 ]);
  8.  
  9. }
  10.  
  11. default
  12. {
  13.    
  14.    
  15.     state_entry()
  16.     {
  17.         llSetTimerEvent(10);
  18.     }
  19.    
  20.    
  21.     timer()
  22.     {
  23.         lampo(); lampo();
  24.     }
  25.    
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement