llDetectedKey

From Second Life Wiki
Revision as of 02:51, 13 June 2007 by Wavez Sands (talk | contribs)
Jump to navigation Jump to search

Summary

Function: key llDetectedKey( integer number );
0.0 Forced Delay
10.0 Energy

Returns a key that is the UUID of the detected object or avatar number.

• integer number

number does not support negative indexes. Returns an empty key if number is not valid sensed object or avatar.

Caveats

  • If number is out of bounds the script continues to execute without an error message.

Examples

default
{
    touch_start(integer number)
    {
        llOwnerSay("The key to who touched me is: " +(string)llDetectedKey(0));
    }
}

See Also

Articles

•  Detected

Deep Notes

Signature

function key llDetectedKey( integer number );