collector_relay.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() {
        llSetText("", ZERO_VECTOR, 0);
    }
    link_message(integer sender_num, integer num, string str, key id) {
        llSetText(str, <1, 1, 0>, 1.0);
    }
    changed(integer change) {
        if(change & CHANGED_INVENTORY) 
            llResetScript();
    }
}