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

llOwnerSay() public method

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

            IChatModule chatModule = World.RequestModuleInterface<IChatModule>();
            if (chatModule != null)
                chatModule.SimChatBroadcast(msg, ChatTypeEnum.Owner, 0,
                                   m_host.AbsolutePosition, m_host.Name, m_host.UUID, false, UUID.Zero, World);
        }
LSL_Api