remove_floating_text.lsl 562 B

1234567891011121314151617181920212223242526
  1. // :SHOW:1
  2. // :CATEGORY:Light
  3. // :NAME:Rene Free Lighting System
  4. // :AUTHOR:Rene10957 Resident
  5. // :KEYWORDS: light,lamp,lighting light
  6. // :CREATED:2015-06-11 14:41:54
  7. // :EDITED:2016-03-30 20:29:28
  8. // :ID:1079
  9. // :NUM:1788
  10. // :REV:1
  11. // :WORLD:Opensim
  12. // :DESCRIPTION:
  13. // Removes floating text and then removes itself
  14. // :CODE:
  15. // :LICENSE: CC0 (Public Domain)
  16. // Removes floating text and then removes itself
  17. default
  18. {
  19. state_entry()
  20. {
  21. llSetLinkPrimitiveParamsFast(LINK_SET, [PRIM_TEXT, "", ZERO_VECTOR, 0.0]);
  22. llRemoveInventory(llGetScriptName());
  23. }
  24. }