More of those fun lope's colour problems!

Posted by Nash on Tue 04 May 2004 01:06 AM — 3 posts, 14,721 views.

USA #0
I cycled through the posts here, found a lot of ones related to this color patch (V1.2 in this case), and like a lot of people I had to manually patch it in. VisualC++ takes the weird definitions of the colors and translates them to look like "#define CLEAR "<weird box thingy>[0m""

I booted up the patch through teraTerm and copied their version which looked like

"#define C_B_WHITE "^[[1;37m""

but after loading it.. I get this!

"^[[0;32mJisseen says 'erps!'^[[0m"

without color.
and is apparently totaly failing to turn the {<color> into ansi color I guess...
Amended on Tue 04 May 2004 01:43 AM by Nash
Australia Forum Administrator #1
This doesn't look right:

"#define C_B_WHITE "^[[1;37m""

There should be an "escape" character there. Try this:

#define C_B_WHITE "\x1B[1;37m"
USA #2
thank you! worked..