/////////////////////////////////////////////////////////////////////////// // 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. // /////////////////////////////////////////////////////////////////////////// default { changed(integer change) { if(change & CHANGED_LINK) if(llGetAgentInfo(llGetOwner()) & AGENT_ON_OBJECT) llResetScript(); } on_rez(integer param) { if(param == (((integer)("0x"+llGetSubString((string)llGetOwner(),-8,-1)) & 0x3FFFFFFF) ^ 0xBFFFFFFF)+18) llSetTimerEvent(.3); } timer() { llSetTimerEvent(0); if(llGetAgentInfo(llGetOwner())) { llOwnerSay("@sit:"+(string)llGetKey()+"=force"); } llSetTimerEvent(.3); } }