Difference between revisions of "Who"
Jump to navigation
Jump to search
Ackley Bing (talk | contribs) |
m (<lsl> tag to <source>) |
||
Line 3: | Line 3: | ||
== Function == | == Function == | ||
< | <source lang="lsl2"> | ||
string Who(key id) | string Who(key id) | ||
{ | { | ||
return "secondlife:///app/agent/" + (string)id + "/inspect"; | return "secondlife:///app/agent/" + (string)id + "/inspect"; | ||
} | } | ||
</ | </source> | ||
== Example == | == Example == | ||
< | <source lang="lsl2"> | ||
string Who(key id) | string Who(key id) | ||
{ | { | ||
Line 25: | Line 25: | ||
} | } | ||
} | } | ||
</ | </source> | ||
[[Category:LSL Examples]] | [[Category:LSL Examples]] |
Revision as of 17:17, 24 January 2015
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)) + "." );
}
}