CHANGED REGION START
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Contents |
Description
Constant: integer CHANGED_REGION_START = 0x400;The integer constant CHANGED_REGION_START has the value 0x400
The region containing the object has just come online.
Examples
default { changed(integer change) { if (change & CHANGED_REGION_START) //note that it's & and not &&... it's bitwise! { llInstantMessage(llGetOwner(), llGetRegionName() + " has restarted."); } } }

