Difference between revisions of "LlGetObjectPermMask"

From Second Life Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
{{LSLFunctionAll|func_id=287|func_sleep=0.0|func_energy=10.0|func=llGetObjectPermMask|return_type=integer|p1_type=integer|p1_name=mask|func_footnote=Returns the requested permission mask for the root object the task is attached to.|return_text|spec|caveats|examples|helpers|related|also|notes}}[[Category:LSL_Functions]][[Category:LSL_Stub]]
{{LSL_Function
|func_id=287|func_sleep=0.0|func_energy=10.0
|func=llGetObjectPermMask|return_type=integer|p1_type=integer|p1_name=mask
|func_footnote
|func_desc
|return_text=that is the requested permission '''mask''' for the root object the task is attached to.
|spec
|caveats
|constants={{LSL Constants Perm Mask}}
|examples
|helpers
|also_functions
|also_events
|also_tests
|also_articles
|notes
|permission
|negative_index
|cat1
|cat2
|cat3
|cat4=Stub
}}

Revision as of 14:33, 9 February 2007

Summary

Function: integer llGetObjectPermMask( integer mask );

Returns an integer that is the requested permission mask for the root object the task is attached to.

• integer mask

Category Description
MASK_BASE 0 The base permissions.
MASK_OWNER 1 Current owner permissions.
MASK_GROUP 2 Active group permissions.
MASK_EVERYONE 3 Permissions everyone has.
MASK_NEXT 4 Permissions the next owner will have.
Permissions Value Description
PERM_ALL 0x7FFFFFFF Move/Modify/Copy/Transfer permissions
PERM_COPY 0x00008000 Copy permission
PERM_MODIFY 0x00004000 Modify permission
PERM_MOVE 0x00080000 Move permission
PERM_TRANSFER 0x00002000 Transfer permission

Examples

Deep Notes

Search JIRA for related Issues

Signature

function integer llGetObjectPermMask( integer mask );