Jump to content

Region Crash Detector


Emery94
 Share

You are about to reply to a thread that has been inactive for 2757 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

The principle of operation is very simple. If a region is not running, the scripts do not work, and the prim where is stops flashing.

Sometimes when a region crash we can take many minutes in realize. Just we note that no one says anything until the window appears saying that we are disconnected or when we encourage to write something and does not appear in chat.

This script is added to a little prim and weared in a HUD position. This script only work in parcels with script permissions.

 

 

integer gbGreen = FALSE;

list glItems = [ "|", "/", "-", "\\" ];
integer giPos = 0;

default
{
    state_entry()
    {
        llSetTimerEvent(1.0);
    }

    timer()
    {
        
        llSetText(llList2String(glItems, giPos), <1.0, 1.0, 1.0>, 1.0);
        giPos = (giPos + 1) % 4;
        
        if (gbGreen == TRUE) {
            
            llSetColor(<1.0, 0.0, 0.0>, ALL_SIDES);
            gbGreen = FALSE;
            
        } 
else
{ llSetColor(<0.0, 1.0, 0.0>, ALL_SIDES); gbGreen = TRUE; } } }

 

Link to comment
Share on other sites

"Sometimes when a region crash we can take many minutes in realize. Just we note that no one says anything until the window appears saying that we are disconnected or when we encourage to write something and does not appear in chat.""

 

 

 

this is mostly not a sim crash but the viewer.

  • Like 2
Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 2757 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...