Difference between revisions of "CHANGED REGION START"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
{{LSL_Generic/pre-release|constant|server-release=[[Release Notes/Second Life Server/1.27|1.27]]}}{{LSL Constant
{{LSL Constant
|name=CHANGED_REGION_START
|name=CHANGED_REGION_START
|type=integer
|type=integer
Line 25: Line 25:
*Suggestion: {{Jira|SVC-1086}} - LSL http_server
*Suggestion: {{Jira|SVC-1086}} - LSL http_server
*Suggestion: {{Jira|SVC-3773}} - Change CHANGED_REGION_RESTART to CHANGED_REGION_START
*Suggestion: {{Jira|SVC-3773}} - Change CHANGED_REGION_RESTART to CHANGED_REGION_START
*Implementation: {{SVN|1836|rev=112899 |trunk=*|anchor=file15|ver=1.24.0.0|ser=1.27.0.112940}} ~ Client [[Release Notes/Second Life Release/1.24|1.24]] ~ Server [[Release Notes/Second Life Server/1.27|1.27]]
*Implementation: {{SVN|1836|rev=112899 |trunk=*|anchor=file15|ver=1.23.0.0|ser=1.27.0.112940}} ~ Client [[Release Notes/Second Life Release/1.23|1.23]] ~ Server [[Release Notes/Second Life Server/1.27|1.27]]
|cat1=Region
|cat1=Region
|cat2=HTTP/Server
|cat2=HTTP/Server

Revision as of 20:53, 10 July 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.

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>

Notes

When a region is (re)started all HTTP server URLs are automatically released and invalidated.

Deep Notes

History

Search JIRA for related Issues

Signature

integer CHANGED_REGION_START = 0x400;