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

llSetRemoteScriptAccessPin() public method

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

            m_host.ScriptAccessPin = pin;
        }
LSL_Api