Difference between revisions of "CHANGED REGION START"
Jump to navigation
Jump to search
m |
m |
||
Line 22: | Line 22: | ||
{{LSL DefineRow||[[changed]]|}} | {{LSL DefineRow||[[changed]]|}} | ||
|history= | |history= | ||
*{{SVN|1836|rev=112899 |trunk=*|anchor= | *{{SVN|1836|rev=112899 |trunk=*|anchor=file15|ver=|ser=}} | ||
|cat1=Region | |cat1=Region | ||
|cat2=HTTP | |cat2=HTTP |
Revision as of 13:13, 27 February 2009
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>