Who
A simple 'llKey2Name' user-function supporting Viewer URI Name Space.
Function
<lsl> string Who(key id) {
return "secondlife:///app/agent/" + (string)id + "/inspect";
} </lsl>
Example
<lsl> string Who(key id) {
return "secondlife:///app/agent/" + (string)id + "/inspect";
}
default {
touch_start(integer num) { llSay(0, "Touched by " + Who(llDetectedKey(0)) + "." ); }
} </lsl>