Difference between revisions of "Who"

From Second Life Wiki
Jump to navigation Jump to search
m (<lsl> tag to <source>)
m (Added {{LSL Header}} for good measure...)
 
(One intermediate revision by the same user 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 ==


<source lang="lsl2">
<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";
}
}
</source>
</syntaxhighlight>


== Example ==
== Example ==


<source lang="lsl2">
<syntaxhighlight lang="lsl2">
string Who(key id)
string Who(key id)
{
{
Line 25: Line 27:
     }
     }
}
}
</source>
</syntaxhighlight>


[[Category:LSL Examples]]
[[Category:LSL Examples]]

Latest revision as of 13:37, 9 March 2023

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)) + "." );
    }
}