CHANGED REGION START
Revision as of 12:57, 27 February 2009 by Strife Onizuka (talk | contribs) (New page: {{LSL Constant |name=CHANGED_REGION_START |type=integer |value={{LSL Hex|0x400}} |desc=Region has been restarted. |examples= <lsl> default { changed(integer change) { if (c...)
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>