Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

How to make a prim unrezz itself by command ?

Henry Grumiaux
Registered User
Join date: 23 Jan 2007
Posts: 142
06-16-2007 18:53
I searched google several times...

I csan't find it..,and shoud be so easy !

Wonder: A simple use

I need: When Someone touch the object , this object unload itself.A sort of self-destruction.

Any idea ?
RJ Source
Green Sky Labs
Join date: 10 Jan 2007
Posts: 272
06-16-2007 19:00
From the touch event, call llDie(), like:



touch_start(integer num_detected)
{
llDie();
}
Henry Grumiaux
Registered User
Join date: 23 Jan 2007
Posts: 142
06-16-2007 19:18
Man, thanx a lot !!!