Who
Jump to navigation
Jump to search
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
A simple 'llKey2Name' user-function supporting Viewer URI Name Space.
Function
<syntaxhighlight lang="lsl2"> string Who(key id) {
return "secondlife:///app/agent/" + (string)id + "/inspect";
} </syntaxhighlight>
Example
<syntaxhighlight lang="lsl2"> string Who(key id) {
return "secondlife:///app/agent/" + (string)id + "/inspect";
}
default {
touch_start(integer num) { llSay(0, "Touched by " + Who(llDetectedKey(0)) + "." ); }
} </syntaxhighlight>