act_comm.c - around line 411 I've added a case for CHANNEL_CHAT so I can change the way the chat shows up.
As the sender, it shows up fine [dark red background, white foreground to show Chat@You]. However the audience only see's Chat@Jim with white text, the darkred background does not seem to parse. Any thoughts on what I can do to remedy this?
case CHANNEL_CHAT:
ch_printf( ch, "^r&W%s@you:^x &c'&C%s&c'&d\r\n", verb, argument );
snprintf( buf, MAX_STRING_LENGTH, "^r&W%s@$n:^x &c'&C$t&c'&d", verb );
break;
As the sender, it shows up fine [dark red background, white foreground to show Chat@You]. However the audience only see's Chat@Jim with white text, the darkred background does not seem to parse. Any thoughts on what I can do to remedy this?