Difference between revisions of "CHANGED REGION START"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 26: Line 26:
*Implementation: {{SVN|1836|rev=112899 |trunk=*|anchor=file15|ver=<!--1.23.0.0-->|ser=<!--1.27.0.112940-->}}
*Implementation: {{SVN|1836|rev=112899 |trunk=*|anchor=file15|ver=<!--1.23.0.0-->|ser=<!--1.27.0.112940-->}}
|cat1=Region
|cat1=Region
|cat2=HTTP
|cat2=HTTP/Server
|cat3
|cat3
|cat4
|cat4
}}
}}

Revision as of 16:13, 18 April 2009

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.

Caveats


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 come online.");
       }
   }

} </lsl>

Deep Notes

History

Search JIRA for related Issues

Signature

integer CHANGED_REGION_START = 0x400;