No Auto-Return

De DigiWiki.

What is No Auto-Return?

Isn't it annoying when you're at a sandbox and you haven't linked a build and you get frustrated because it gets returned and you can't work out where that bit goes again? Well, with this script it stops the objects from getting returned!

Note 1: Only use for long builds that will take a long time; NOTHING ELSE!!!
Note 2: Only works in single prims.

// Bella all the way! xD
 
default
{
    state_entry()
    {
        llRequestPermissions(llGetOwner(),PERMISSION_CHANGE_LINKS);
        llListen(10240,"",NULL_KEY,"");
    }
    on_rez(integer param)
    {
        llRequestPermissions(llGetOwner(),PERMISSION_CHANGE_LINKS);
    }
    run_time_permissions(integer perm)
    {
        if(perm)
        {
            llSetTimerEvent(30);
        }
    }
    timer()
    {
        key parent=llGetKey();
        llBreakLink(llGetLinkNumber());
        llSleep(5);
        llCreateLink(parent,0);
    }
    listen(integer channel, string name, key id, string message)
    {
        llDie();
    }
}
Outils personnels
  • Cette page a été consultée 867 fois.
donate
Google Ads