Log Banners to ConsoleSuggestion

Hi,
is it possible to log the banner messages into the console log please?

For example the heli-got-destroyed-banner would be nice to have as logline in my console, too.
Would that be possible?

This would be already enough:

[HookMethod("CreateAnnouncement")]
        void CreateAnnouncement(string Msg, string bannerTintColor, string textColor, BasePlayer player = null, float APIAdjustVPosition = 0f, bool isWelcomeAnnouncement = false, bool isRestartAnnouncement = false, string group = null, bool isTestAnnouncement = false)
        {
//If(config.debug == true) pseudocode
            Puts(Msg);
.....​

Interesting thought. It wouldn't be hard to implement at all, so I can add it.

10B9eLMqJ0sGH9N.png JoeSheep

Interesting thought. It wouldn't be hard to implement at all, so I can add it.

I did it already and the only tricky part would be to divide between public announcements, or private message

Puts(player == null ? Msg : ("Private Message for player: [" + player.displayName + "]: " + Msg));