// This will kill the prim it is in, 10 minutes after the prim has been rezzed.
//
// Kimm Paulino, June 2010
default
{
state_entry()
{
// 10 minutes
llSetTimerEvent (600.0);
}
timer ()
{
llSetTimerEvent (0.0);
llDie();
}
}