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

print() public method

public print ( string str ) : void
str string
return void
        public void print(string str)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.Severe, "print", m_host, "LSL", m_itemID)) return;

            if (m_ScriptEngine.Config.GetBoolean("AllowosConsoleCommand", false))
            {
                if (World.Permissions.CanRunConsoleCommand(m_host.OwnerID))
                {
                    // yes, this is a real LSL function. See: http://wiki.secondlife.com/wiki/Print
                    MainConsole.Instance.Output("LSL print():" + str);
                }
            }
        }
LSL_Api