~~~positioner.lsl 909 B

12345678910111213141516171819202122232425262728293031323334
  1. // :SHOW:
  2. // :CATEGORY:NPC
  3. // :NAME:PMAC
  4. // :AUTHOR:Aine Caoimhe
  5. // :KEYWORDS:
  6. // :CREATED:2015-11-24 20:39:02
  7. // :EDITED:2015-11-24 19:39:02
  8. // :ID:1095
  9. // :NUM:1878
  10. // :REV:1
  11. // :WORLD:Second Life
  12. // :DESCRIPTION:
  13. // Animation Handle for Avatars
  14. // :CODE:
  15. // PARAMOUR MULTI-ANIMATION CONTROLLER (PMAC) v1.0 POSITIONING HANDLE SCRIPT
  16. // by Aine Caoimhe January 2015
  17. // Provided under Creative Commons Attribution-Non-Commercial-ShareAlike 4.0 International license.
  18. // Please be sure you read and adhere to the terms of this license: https://creativecommons.org/licenses/by-nc-sa/4.0/
  19. //
  20. // There are no settings in this script that would normally require adjustment by the user.
  21. // Edit at your own risk
  22. default
  23. {
  24. dataserver(key who,string message)
  25. {
  26. if (message=="HANDLE_DIE") llDie();
  27. }
  28. changed(integer change)
  29. {
  30. if (change & CHANGED_REGION_START) llDie();
  31. }
  32. }