/////////////////////////////////////////////////////////////////////////// // Copyright (C) Wizardry and Steamworks 2011 - License: GNU GPLv3 // // Please see: http://www.gnu.org/licenses/gpl.html for legal details, // // rights of fair usage, the disclaimer and warranty conditions. // /////////////////////////////////////////////////////////////////////////// // // _ // \ / _ | _ _ o _|_ |_| | | | \ // \/ (/_ | (_) (_ | |_ \/ | | |_| |_/ // / // /////////////////////////////////////////////////////////////////////////// // INTERNALS // /////////////////////////////////////////////////////////////////////////// integer lock=0; default { link_message(integer sender, integer num, string str, key id) { if(lock) return; lock=1; llSetColor(<1,1,1>, ALL_SIDES); llSetTimerEvent(.01); } timer() { llSetColor(<0,0,1>, ALL_SIDES); llSetTimerEvent(0); lock=0; } }