OsGetAvatarHomeURI
From OpenSimulator
string osGetAvatarHomeURI(key uuid)
| |
Returns an avatar's Home URI. | |
Threat Level | Low |
Permissions | ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
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); } } | |
Notes | |
This function was added in 0.8.2-post-fixes |