cmd - Color to specific text batch -


i'm trying make ascii art game in batch , i'm having problems color. i'm new batch , simple answer.

    @echo off     echo hello     color 01     echo hello     color 02     echo hello     color 03     echo hello     color 04     echo hello     color 05     echo hello 

this code i'm trying make text difference colors isn't working. if need more specific can ask!

(i'm trying make game similar art style dwarf fortress, if have suggestions better easy language use 'thank you!')

check coloroutput.bat.you can use :

call coloroutput.bat -s hello -f 1 -b 0 call coloroutput.bat -s hello -f 0 -b 1 call coloroutput.bat -s hello -f 0 -b 2 call coloroutput.bat -s hello -f 0 -b 3 call coloroutput.bat -s hello -f 0 -b 4 call coloroutput.bat -s hello -f 0 -b 5 call coloroutput.bat -s hello -f 0 -b 6 

for more info - coloroutput.bat -help


Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -