Page 1 of 1

Deleting and NPC clone

Posted: Sat Oct 21, 2017 5:56 pm
by Snow Gryphon
We created an NPC clone and now we cannot get rid of it. It seems to be preventing our sim from closing too. Any suggestions about how to delete it?

Re: Deleting and NPC clone

Posted: Sat Oct 21, 2017 7:37 pm
by Ilan Tochner
Hi Snow,

An NPC shouldn't prevent a world from shutting down. The world should do so automatically a few minutes after the last user leaves that world. You can track when the world shuts down in the Active World panel on that world's World Page.

That said, if you go to your world's World Page while it's active you'll see an option to manually "stop world" in the world's Active World panel.

For more details about the Active World panel, please see: https://kitely.atlassian.net/wiki/space ... erformance

Re: Deleting and NPC clone

Posted: Thu Nov 02, 2017 10:24 pm
by Brayla Sana
Put this script in a box and then click the box. It will remove all NPC's from your sim.

Code: Select all

// sim-wide NPC killer
// kill all of NPCs in this SIM
// Attempts to kill agents too, but it will silently fail
// http://opensimulator.org/wiki/OsNpcRemove
 
default
{
    touch_start(integer number)
    {
        list avatars = llList2ListStrided(osGetAvatarList(), 0, -1, 3);
        integer i;
        llSay(0,"NPC Removal: No avatars will be harmed or removed in this process!");
        for (i=0; i<llGetListLength(avatars); i++)
        {
            string target = llList2String(avatars, i);
            osNpcRemove(target);
            llSay(0,"NPC Removal: Target "+target);
        }
    }
}