Unrecognized escape sequence \|Solved
Im trying to add this so it echos in console
 ___  _   _  _     ___  ___ 
| _ \| | | || |   | __|/ __|
|   /| |_| || |__ | _| \__ \
|_|_\ \___/ |____||___||___/
​

but when i add it inbetween these lines 

            player.Command($"echo \"` ___  _   _  _     ___  ___ `\"");
            player.Command($"echo \"`| _ \| | | || |   | __|/ __| `\"");

Error while compiling: F1Echo.cs(22,157): error CS1009: Unrecognized escape sequence `\|'

player.Command($"echo \"` ___  _   _  _     ___  ___ `\"");
player.Command($"echo \"`| _ \\| | | || |   | __|/ __| `\"");

\ is an escape character, so if you want to show a \, you'd need to escape it with \\

cheers Wulf - Dusty helped me in your Discord.
Locked automatically