// This script is from http://xahlee.org/sl/ . Copyright © 2007 Xah Lee. Permission is granted for use or modification provided this note is intact and the script has permissions for copy, mod, and resell. // Description: touch to give a notecard. // The object should have a item named “Store Notes”. default { touch_start(integer num_detected) { integer i; for(i = 0; i < num_detected; ++i) { llGiveInventory(llDetectedKey(i), "Store Notes"); } } }