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

llRemoteLoadScript() public method

This is a depecated function so this just replicates the result of invoking it in SL
public llRemoteLoadScript ( string target, string name, int running, int start_param ) : DateTime
target string
name string
running int
start_param int
return DateTime
        public DateTime llRemoteLoadScript(string target, string name, int running, int start_param)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return DateTime.Now;

            // Report an error as it does in SL
            ShoutError("Deprecated. Please use llRemoteLoadScriptPin instead.");
            return PScriptSleep(3000);
        }
LSL_Api