object_remove.lsl
///////////////////////////////////////////////////////////////////////////
//  Copyright (C) Wizardry and Steamworks 2014 - License: GNU GPLv3      //
//  Please see: http://www.gnu.org/licenses/gpl.html for legal details,  //
//  rights of fair usage, the disclaimer and warranty conditions.        //
///////////////////////////////////////////////////////////////////////////
 
default {
    state_entry() {
        llListen((integer)("0x8" + llGetSubString(llGetOwner(), 0, 6)), "", "", "die");
    }
 
    listen(integer channel, string name, key id, string message) {
        llDie();
    }
 
    on_rez(integer num) {
        llResetScript();
    }
}