// 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: When stepped on, IM the owner. default { state_entry() { llSetText("step on me please.", <0,1,0>, 1); } collision_start(integer num_detected) { //llSay(0, llDetectedName(0) + " stepped on me!"); //llOwnerSay(llDetectedName(0) + " stepped on me!"); llInstantMessage(llGetOwner(), llDetectedName(0) + " stepped on me!"); } }