OsGetAvatarHomeURI

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Created page with "{{osslfunc |threat_level=Low |function_syntax=string osGetAvatarHomeURI(string uuid) |ossl_example=<source lang="lsl"> // // Sample Script // default { touch_start(int...")

Revision as of 03:26, 23 November 2015

string osGetAvatarHomeURI(string uuid)
Returns an avatar's Home URI.
Threat Level Low
Permissions No permissions specified
Extra Delay No function delay specified
Example(s)
//
// Sample Script
// 
 
default
{
    touch_start(integer num_detected)
    {
        key avatarKey = llDetectedKey(0);
        string homeUri = osGetAvatarHomeURI(avatarKey);
        llSay(0, "Your Home URI is: " + homeUri);
    }
}
Personal tools
General
About This Wiki