Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Deleting animation scripts

Carlos Cameron
Registered User
Join date: 28 Jun 2006
Posts: 128
05-21-2009 05:58
What is the name of the script to delete animation scripts in a prim? For instance: I have a prim but it has a water script runnning inside of it. I want to use that same prim but without the moving animation. I delete the script but it continues to flow but I want to make it stop.

Whats the name of this script and where can I buy it?

Thank You
Viktoria Dovgal
Join date: 29 Jul 2007
Posts: 3,593
05-21-2009 06:16
OK, so you have a particle system embedded in the object? You do not need to buy anything, there are tiny scripts you can copy and paste into the prim to fix this.

There is a list of these here:

http://wiki.secondlife.com/wiki/Remove_Prim_Properties

To save a few clicks:

CODE



default {
state_entry() {
llParticleSystem([]);
llSetTextureAnim(FALSE, ALL_SIDES, 0, 0, 0.0, 0.0, 1.0);
llRemoveInventory(llGetScriptName());
}
}