CHANGED REGION START

From Second Life Wiki

Second Life Wiki > LSL Portal > Constants > CHANGED REGION START
Jump to: navigation, search

Template:Needs Translation/LSL/de Template:Needs Translation/LSL/es Template:Needs Translation/LSL/el Template:Needs Translation/LSL/fr Template:Needs Translation/LSL/he Template:Needs Translation/LSL/it Template:Needs Translation/LSL/ja Template:Needs Translation/LSL/ko Template:Needs Translation/LSL/nl Template:Needs Translation/LSL/hu Template:Needs Translation/LSL/no Template:Needs Translation/LSL/da Template:Needs Translation/LSL/sv Template:Needs Translation/LSL/tr Template:Needs Translation/LSL/pl Template:Needs Translation/LSL/pt Template:Needs Translation/LSL/ru Template:Needs Translation/LSL/uk Template:Needs Translation/LSL/zh-Hans Template:Needs Translation/LSL/zh-Hant

Contents

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

 
default
{
    changed(integer change)
    {
        if (change & CHANGED_REGION_START) //note that it's & and not &&... it's bitwise!
        {
            llInstantMessage(llGetOwner(), llGetRegionName() + " has restarted.");
        }
    }
}
 

Notes

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

Deep Notes

History

In other languages