Difference between revisions of "CHANGED REGION START"

From Second Life Wiki
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=file16|ver=|ser=}}
*{{SVN|1836|rev=112899 |trunk=*|anchor=file15|ver=|ser=}}
|cat1=Region
|cat1=Region
|cat2=HTTP
|cat2=HTTP

Revision as of 14:13, 27 February 2009

Description

Constant: integer CHANGED_REGION_START = 0x400;

The integer constant CHANGED_REGION_START has the value 0x400

Region has been restarted.

Related Articles

Functions

•  llRequestSimulatorData

Events

•  changed

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>

Deep Notes

History

Search JIRA for related Issues

Signature

integer CHANGED_REGION_START = 0x400;