smaugFUSS Chat Color tokens?

Posted by TehL33TJim on Fri 31 Aug 2018 06:23 AM — 1 posts, 7,793 views.

#0
act_comm.c - around line 411 I've added a case for CHANNEL_CHAT so I can change the way the chat shows up.


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?