Cutstuff Forum

Mega Man 8-bit Deathmatch => Help & Editing => Topic started by: Matt on February 04, 2018, 06:22:08 PM

Title: Player name color change commands not working
Post by: Matt on February 04, 2018, 06:22:08 PM
For whatever reason, no matter what I type into the command prompt, I cannot seem to get the game to change my player name's color. I've tried every combination of commands I've seen; \cXname, \\cXname, \c[X]name and \\c[X]name. The heck am I doing wrong?
Title: Re: Player name color change commands not working
Post by: Korby on February 04, 2018, 08:24:32 PM
don't use capital letters in any step of the process
if you're using the console you have to use three backslashes.
Code: [Select]
name \\\cghorse
if you're setting up an alias or a bind to change your name, it has to be formatted similar to this
Code: [Select]
alias horsename "name \"\\\\cghorse\""
Code: [Select]
bind f "name \"\\\\cghorse\""

all of these would set your name to horse
Title: Re: Player name color change commands not working
Post by: Matt on February 05, 2018, 02:43:12 PM
Thank worked, thank you!