Difference between revisions of "LlOnRegionReset"

From Second Life Wiki
Jump to navigation Jump to search
Line 2: Line 2:


Like the event will be set with LlSetResetEvent(integer secondstodisaster);
Like the event will be set with LlSetResetEvent(integer secondstodisaster);
 
<pre>
ResetEvent(string LLNotice) {
ResetEvent(string LLNotice) {
llHTTPreq(migratedate(ALL));
    llHTTPreq(migratedate(ALL));
}
}
</pre>
:Where are you storing your data that is causing it to get lost? You're not using the event queue are you?

Revision as of 09:15, 6 June 2007

It would be nice if a shutdown notice from LL would trigger a scripted event. I'm using userlists which get lost when the region resets. If a noticed regionreset will trigger an event, it would be possible to take backup measures using httpreq.

Like the event will be set with LlSetResetEvent(integer secondstodisaster);

ResetEvent(string LLNotice) {
    llHTTPreq(migratedate(ALL));
}
Where are you storing your data that is causing it to get lost? You're not using the event queue are you?