Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llResetOtherScript C# (CSharp) Method

llResetOtherScript() public method

public llResetOtherScript ( string name ) : void
name string
return void
        public void llResetOtherScript(string name)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;
            UUID item;



            if ((item = ScriptByName(name)) != UUID.Zero)
                m_ScriptEngine.ResetScript(m_host.UUID, item, false);
            else
                ShoutError("llResetOtherScript: script " + name + " not found");
        }
LSL_Api