PRoConEvents.MULTIbalancer.ProconChatPlayer C# (CSharp) Method

ProconChatPlayer() private method

private ProconChatPlayer ( String who, String what ) : void
who String
what String
return void
        private void ProconChatPlayer(String who, String what)
        {
            if (fAborted) return;
            if (String.IsNullOrEmpty(what)) return;
            if (EnableLoggingOnlyMode) what = "(SIMULATING) " + what;
            if (LogChat) ExecuteCommand("procon.protected.chat.write", GetPluginName() + " > " + who + ": " + what);
        }
MULTIbalancer