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

llDie() public method

public llDie ( ) : void
return void
        public virtual void llDie()
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;

            throw new SelfDeleteException();
        }
LSL_Api