Who
Revision as of 17:17, 24 January 2015 by ObviousAltIsObvious Resident (talk | contribs) (<lsl> tag to <source>)
A simple 'llKey2Name' user-function supporting Viewer URI Name Space.
Function
string Who(key id)
{
return "secondlife:///app/agent/" + (string)id + "/inspect";
}
Example
string Who(key id)
{
return "secondlife:///app/agent/" + (string)id + "/inspect";
}
default
{
touch_start(integer num)
{
llSay(0, "Touched by " + Who(llDetectedKey(0)) + "." );
}
}