Who
Revision as of 19:31, 15 February 2013 by Ackley Bing (talk | contribs)
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>