Join us in Phaze Demesnes

LSL Script Library Home   Add a script Show All
Category: Contributor: Description
Die Anonymous Kill Object 1.0.lsl
Kill Object 1.0.lsl
Kill Object 1.0.lsl

Download this script - Please use this link to get this script. If you see all the code on one long line, please use Wordpad or another editor, such as LSLEdit.exe. The .LSL file you will download is an ordinary text file.

1 // CATEGORY:Die
2 // DESCRIPTION:Kill Object 1.0.lsl
3 // ARCHIVED BY:Ferd Frederix
4
5 default
6 {
8 {
9 key id = llGetOwner();
10 llListen(0,"",id,"kill object");
11 }
12
14 {
15 if (m=="kill object")
16 {
17 llDie();
18 }
19 }
20 }
21
22 // END //