User:Clarknova Helvetic/Clear Param Widgets
Jump to navigation
Jump to search
These Scripts clear a single param. Drag 'n drop.
Just Die
Sometimes a prim jest don't die natural.
default
{
state_entry()
{
llDie();
}
}
Die in X Minutes
Enter minutes in whole numbers, then drop script into prim
integer minutes = 20; // Change this to the number of minutes for the object to live.
default
{
state_entry() { llSetTimerEvent((float)minutes*60.); }
timer()
{
llInstantMessage(llGetOwner(),(string)llRound(minutes) + " minutes expired. " + llGetObjectName() + " deleted.");
llDie();
}
}
Clear Hover Text
default {
state_entry()
{
llSetText("",ZERO_VECTOR,0.);
llRemoveInventory(llGetScriptName());
}
}
Clear Particles
default
{
state_entry()
{
llParticleSystem([]);
llRemoveInventory(llGetScriptName());
}
}
Stop Sound
default
{
state_entry()
{
llStopSound();
llRemoveInventory(llGetScriptName());
}
}