OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osRegionNotice C# (CSharp) Method

osRegionNotice() public method

public osRegionNotice ( string msg ) : void
msg string
return void
        public void osRegionNotice(string msg)
        {
            // This implementation provides absolutely no security
            // It's high griefing potential makes this classification
            // necessary
            //
            CheckThreatLevel(ThreatLevel.VeryHigh, "osRegionNotice");

            m_host.AddScriptLPS(1);

            IDialogModule dm = World.RequestModuleInterface<IDialogModule>();

            if (dm != null)
                dm.SendGeneralAlert(msg);
        }
OSSL_Api