Difference between revisions of "Who"
Jump to navigation
Jump to search
Ackley Bing (talk | contribs) |
m (Added {{LSL Header}} for good measure...) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{LSL Header}} | |||
A simple '[[llKey2Name]]' user-function supporting [[Viewer URI Name Space]]. | A simple '[[llKey2Name]]' user-function supporting [[Viewer URI Name Space]]. | ||
== Function == | == Function == | ||
< | <syntaxhighlight lang="lsl2"> | ||
string Who(key id) | string Who(key id) | ||
{ | { | ||
return "secondlife:///app/agent/" + (string)id + "/inspect"; | return "secondlife:///app/agent/" + (string)id + "/inspect"; | ||
} | } | ||
</ | </syntaxhighlight> | ||
== Example == | == Example == | ||
< | <syntaxhighlight lang="lsl2"> | ||
string Who(key id) | string Who(key id) | ||
{ | { | ||
Line 25: | Line 27: | ||
} | } | ||
} | } | ||
</ | </syntaxhighlight> | ||
[[Category:LSL Examples]] | [[Category:LSL Examples]] |
Latest revision as of 12:37, 9 March 2023
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
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)) + "." );
}
}