Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. string text = "Sit to float
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n"; //Customize this string with your own message
  8.  
  9. default {
  10.  
  11. state_entry() {
  12.  
  13. llSetText(text, <1.0, 1.0, 1.0>, 1.0);
  14. }
  15.  
  16. changed(integer change)
  17. {
  18. if (change & CHANGED_LINK)
  19. {
  20. key av = llAvatarOnSitTarget();
  21. if (av) // evaluated as true if key is valid and not NULL_KEY
  22. {
  23. llSetText("", <1.0, 1.0, 1.0>, 1.0);
  24.  
  25. } else {
  26.  
  27. llSetText(text, <1.0, 1.0, 1.0>, 1.0);
  28. }
  29. }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement