Proposal for handling restarts in LSL
Artesia Heartsong
Option 1: an event to read alerts (the easiest one, requires parsing)
Option 2: an event to capture a restart, or a cancellation
Log In
Silverdown Winchester
Definitely would be useful
WolfGang Senizen
I assume you mean Simulator/Region restarts, not client ones.
Notifying in advance of a sim restart has been requested for a while, like this issue here
You can however catch that a sim restart has happened.
default {
changed(integer change) {
if(change & CHANGED_REGION_START) {
llSay(0, "A restart has occurred");
}
}
}
Artesia Heartsong
WolfGang Senizen That is correct, but that is after the fact - not before the restart. Hence the feature request.