Who

From Second Life Wiki
Revision as of 20:31, 15 February 2013 by Ackley Bing (talk | contribs)
Jump to navigation Jump to search

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>