7b9ac75b-4542-4a10-7278-7727359e29f1_script.lsl 741 B

123456789101112131415161718192021222324
  1. //
  2. // The line above should be left blank to avoid script errors in OpenSim.
  3. // Edmund Edgar, 2012-05-12: Removing the full toolbar, just using the lite one.
  4. // If we resurrect the full toolbar, get the old version of this script from Git.
  5. default
  6. {
  7. state_entry()
  8. {
  9. llSetText("Click to get your toolbar", <0,0,1>, 100);
  10. }
  11. touch_start(integer total_number)
  12. {
  13. integer i;
  14. for (i=0; i<total_number; i++) {
  15. llGiveInventory(llDetectedKey(i), "Sloodle Lite Toolbar v1.4");
  16. }
  17. }
  18. }
  19. // Please leave the following line intact to show where the script lives in Git:
  20. // SLOODLE LSL Script Git Location: mod/toolbar_giver-1.0/objects/toolbar/assets/sloodle_toolbar_giver.lslp