Difference between revisions of "LlGetLandOwnerAt"

From Second Life Wiki
Jump to navigation Jump to search
m
m (Removed incorrect " (but this isn't usable for anything <snip>". Quick example, using this function to compare owner to a list of owners including groups. Added comment to example.)
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:
|spec=If the land is in public domain {{LSL Const|NULL_KEY|key|&quot;00000000-0000-0000-0000-000000000000&quot;|c=Evaluates to false in conditionals just like invalid keys.}} is returned. This land can be claimed by anyone with available tier. Land on the Preview grid is divvied out this way. Land on the main grid never enters public domain and is instead auctioned off by LL.
|spec=If the land is in public domain {{LSL Const|NULL_KEY|key|&quot;00000000-0000-0000-0000-000000000000&quot;|c=Evaluates to false in conditionals just like invalid keys.}} is returned. This land can be claimed by anyone with available tier. Land on the Preview grid is divvied out this way. Land on the main grid never enters public domain and is instead auctioned off by LL.


If the land is [[group]]-owned, the group key is returned (but this isn't usable for anything, since group keys cannot be used by other functions in LSL).
If the land is [[group]]-owned, the group key is returned.
|caveats
|caveats
|constants
|constants
Line 15: Line 15:
<source lang="lsl2">
<source lang="lsl2">
default {
default {
    state_entry() {
    state_entry() {
          llOwnerSay("The land owner over this object is " + llKey2Name(llGetLandOwnerAt(llGetPos())) + ".");
        //llKey2Name does not work for groups, and it requires avatars to be on sim (owner is not known when absent tested 2019-06-10).
    }
        //Actually printing the owner name (also for groups) is somewhat tricky - if you feel otherwise, please update this example.
        llOwnerSay("The land owner under this object is " + llKey2Name(llGetLandOwnerAt(llGetPos())) + ".");
    }
}
}
</source>
</source>

Latest revision as of 02:10, 10 June 2019

Summary

Function: key llGetLandOwnerAt( vector pos );

Returns a key that is the land owner at pos.

• vector pos region coordinate

Specification

If the land is in public domain NULL_KEY is returned. This land can be claimed by anyone with available tier. Land on the Preview grid is divvied out this way. Land on the main grid never enters public domain and is instead auctioned off by LL.

If the land is group-owned, the group key is returned.

Examples

default {
    state_entry() {
        //llKey2Name does not work for groups, and it requires avatars to be on sim (owner is not known when absent tested 2019-06-10).
        //Actually printing the owner name (also for groups) is somewhat tricky - if you feel otherwise, please update this example.
        llOwnerSay("The land owner under this object is " + llKey2Name(llGetLandOwnerAt(llGetPos())) + ".");
    }
}

See Also

Functions

•  llGetParcelDetails

Deep Notes

History

Search JIRA for related Issues

Footnotes

  1. ^ Early release notes were not very accurate or thorough, they sometimes included information about features added in previous releases or failed to include information about features added in that release.

Signature

function key llGetLandOwnerAt( vector pos );