Plugin needing update after oct 2 wipe

plugin will not compile, 

"No overload for method 'PrintColoured' takes 6 arguments | Line: 1349, Pos: 31"

For now, replace

ServerConsole.PrintColoured(ConsoleColor.White, "[CLAN] ", ConsoleColor.DarkYellow, player.displayName + ": ", ConsoleColor.DarkGreen, message);

with
ServerConsole.PrintColoured($"[CLAN] [{player.UserIDString}] {player.displayName.EscapeRichText()}:{message}", ConsoleColor.DarkYellow);

and

replace
ServerConsole.PrintColoured(ConsoleColor.White, "[ALLY] ", ConsoleColor.DarkYellow, player.displayName + ": ", ConsoleColor.DarkGreen, message);

with
ServerConsole.PrintColoured($"[ALLY] [{player.UserIDString}] {player.displayName.EscapeRichText()}:{message}", ConsoleColor.DarkGreen);

chuckyau

For now, replace

ServerConsole.PrintColoured(ConsoleColor.White, "[CLAN] ", ConsoleColor.DarkYellow, player.displayName + ": ", ConsoleColor.DarkGreen, message);

with
ServerConsole.PrintColoured($"[CLAN] [{player.UserIDString}] {player.displayName.EscapeRichText()}:{message}", ConsoleColor.DarkYellow);

and

replace
ServerConsole.PrintColoured(ConsoleColor.White, "[ALLY] ", ConsoleColor.DarkYellow, player.displayName + ": ", ConsoleColor.DarkGreen, message);

with
ServerConsole.PrintColoured($"[ALLY] [{player.UserIDString}] {player.displayName.EscapeRichText()}:{message}", ConsoleColor.DarkGreen);

I had attempted this fix (thanks BTW) but alas the plugin still will not compile.

chuckyau

For now, replace

ServerConsole.PrintColoured(ConsoleColor.White, "[CLAN] ", ConsoleColor.DarkYellow, player.displayName + ": ", ConsoleColor.DarkGreen, message);

with
ServerConsole.PrintColoured($"[CLAN] [{player.UserIDString}] {player.displayName.EscapeRichText()}:{message}", ConsoleColor.DarkYellow);

and

replace
ServerConsole.PrintColoured(ConsoleColor.White, "[ALLY] ", ConsoleColor.DarkYellow, player.displayName + ": ", ConsoleColor.DarkGreen, message);

with
ServerConsole.PrintColoured($"[ALLY] [{player.UserIDString}] {player.displayName.EscapeRichText()}:{message}", ConsoleColor.DarkGreen);

not sure on why it did not work the first time I tried your fix, but it IS working for me now, thanks for the information.

really appreciated.