CHANGED PERMISSIONS - Second Life Wiki

CHANGED PERMISSIONS

From Second Life Wiki

Second Life Wiki > CHANGED PERMISSIONS
Jump to: navigation, search
Image:Emblem-important-yellow.png LSL Feature Request
The described constant does not exist. This article is a feature request.

Contents

Description

Constant: integer CHANGED_PERMISSIONS = 0x???;

The integer constant CHANGED_PERMISSIONS has the value 0x???

The object permissions have changed. This event is triggered in all prims when a root object permission mask has changed.

Related Articles

Functions

•  llGetObjectPermMask

Events

•  changed

Examples

default
{
    changed(integer change)
    {
        if (change & CHANGED_PERMISSIONS) //Note that it's & and not &&... it's bitwise!
        {
            llOwnerSay("The object permissions have changed.");
        }
    }
}

Deep Notes

All Issues

~ Search JIRA for related Issues
   CHANGED_PERMISSIONS new feature request.