plugin will not compile,
Plugin needing update after oct 2 wipe
"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);
chuckyauFor 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.
chuckyauFor 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.