CHANGED REGION START
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer CHANGED_REGION_START = 0x400;The integer constant CHANGED_REGION_START has the value 0x400
Region has been restarted.
Caveats
Related Articles
Examples
<lsl> default {
changed(integer change)
{
if (change & CHANGED_REGION_START) //note that it's & and not &&... it's bitwise!
{
llOwnerSay("The region has restarted.");
}
}
} </lsl>