Admin name is back to green As of 10/2/25

Tried to o.reload NoGreen and get this message

(14:08:16) | Error while compiling NoGreen: No overload for method 'PrintColoured' takes 4 arguments | Line: 18, Pos: 22

having same issue

Some changes were made to the server console handling in this update, but, it would appear that as part of that, PrintColoured changed to only handle a single text and colour pair per invocation.

This is all subject to change I suppose, but, to get this loading...

Change line 18/19 from:

ServerConsole.PrintColoured(ConsoleColor.DarkYellow,
string.Concat("[", channel, "] ", player.displayName, ": "), ConsoleColor.DarkGreen, message);

To:

ServerConsole.PrintColoured(
string.Concat("[", channel, "] ", player.displayName, ": ", message),
ConsoleColor.DarkGreen);

Failed to compile: No overload for method 'PrintColoured' takes 4 arguments | Line: 18, Pos: 22

Thanks  dtucny That solved it for me ...

Same problem, failed to compile, is it possible to update the plugin ?

Thanks much, worked perfectly. For anyone else, what worked for me - I copied the three corrected lines posted here. I then highlighted line 18 and 19 starting at the beginning of line 18 "ServerConsole" so that when I pasted the correction it matched the same position. I then pasted all three lines at once, then moved line 19 and 20 into their positions under line 18.