OsGetAvatarHomeURI
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
m (Added note stating which version of OpenSim introduced this function) |
||
| Line 20: | Line 20: | ||
|description=Returns an avatar's Home URI. | |description=Returns an avatar's Home URI. | ||
| − | | | + | |additional_info=This function was added in 0.8.2-post-fixes |
}} | }} | ||
Revision as of 09:25, 15 October 2018
string osGetAvatarHomeURI(string 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 | |