OsGetAvatarHomeURI
From OpenSimulator
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); } } |