/////////////////////////////////////////////////////////////////////////// // 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 { link_message(integer sender, integer num, string str, key id) { if(num & 0xFFFF != 1) return; integer channel = num >> 16; llRezObject("o", (vector)str, ZERO_VECTOR, ZERO_ROTATION, channel); llWhisper(channel, id); } }