default { state_entry() { llSay(0, "Say 'explode' and I will!"); llListen(1,"","",""); } touch_start(integer total_number) { llSay(0, "Say '/1 explode' and I will!"); } listen(integer channel, string name, key id, string message) { if (message == "explode") { llTriggerSound("boom", 2.0); llMakeExplosion(20, 1, 10, 2, 1, "poof", <0,0,0>); llDie(); } } }