CHANGED REGION START
Revision as of 13:12, 27 February 2009 by Strife Onizuka (talk | contribs)
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>