Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Anyone got CHANGED_REGION to work?

Dina Vanalten
Registered User
Join date: 24 Dec 2006
Posts: 268
10-12-2007 22:00
I have this thing I sit on and can fly around on. I want to tell when I enter a new region.

So I set up:

changed(integer change)
{

llOwnerSay((string)change);

if ( change & CHANGED_REGION )
{
if ( landing_point_region == llGetRegionName() )
{
llWhisper(0, "Over known region/sim - landing may work again.";);
}
else
{
llWhisper(0, "Leaving known region/sim - landing may not work.";);
}
}
}

The problem is that the change of region seems to be detected on some kind of random basis and doesn't always work. Does anyone have any experiece with this this event?

Thanks - D
Siann Beck
Beauty & Braiiiiinsss!
Join date: 14 Jul 2007
Posts: 140
10-13-2007 09:03
Perhaps you're trying it over no-script land?