OsGetAvatarHomeURI
From OpenSimulator
string osGetAvatarHomeURI(key avatarId)
| |
| Returns an avatar's Home URI. | |
| Threat Level | Low |
| Permissions | ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER |
| Extra Delay | 0 seconds |
| Example(s) | |
// // osGetAvatarHomeURI Script Example // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osGetAvatarHomeURI usage."); } touch_start(integer number) { key avatarKey = llDetectedKey(0); string homeUri = osGetAvatarHomeURI(avatarKey); llSay(PUBLIC_CHANNEL, "Your Home URI is: " + homeUri); } } | |
| Notes | |
| This function was added in 0.8.2-post-fixes | |