Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Owner only touch_start

MadamG Zagato
means business
Join date: 17 Sep 2005
Posts: 1,402
01-18-2006 13:47
How do I make it so only the owner can Touch the object using touch_start?
Zepp Zaftig
Unregistered Abuser
Join date: 20 Mar 2005
Posts: 470
01-18-2006 14:38
CODE

touch_start(integer num_detected) {
if(llDetectedKey(0) == llGetOwner()) {
//Code here, e.g. llSay(0, "touched");
}
}