Advertisement
Dorex

Untitled

Nov 21st, 2023
1,014
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. default
  2. {
  3.     on_rez(integer start_param)
  4.     {
  5.         llSetTimerEvent(0.1);
  6.     }
  7.     state_entry()
  8.     {
  9.         llSetTimerEvent(0.1);
  10.     }
  11.     timer()
  12.     {
  13.         if (llGetAgentInfo( llGetOwner() ) & AGENT_TYPING )  {
  14.             llSetLinkPrimitiveParamsFast(LINK_SET, [ PRIM_GLOW, ALL_SIDES, 1.0 ] ) ;
  15.         } else {
  16.             llSetLinkPrimitiveParamsFast(LINK_SET, [ PRIM_GLOW, ALL_SIDES, 0.0 ] ) ;
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement