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

llSetPrimURL() public method

The SL implementation does nothing, it is deprecated This duplicates SL
public llSetPrimURL ( string url ) : DateTime
url string
return DateTime
        public DateTime llSetPrimURL(string url)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return DateTime.Now;

            return PScriptSleep(2000);
        }
LSL_Api