VOGONS


First post, by curvedline

User metadata
Rank Newbie
Rank
Newbie

what would be the doxbox's batch command syntax for color 1F and color 70?

@ECHO OFF
COLOR 70
SET Z=....
if %Z%==...
if any other key to continue
-------------------------
@ECHO OFF
COLOR 1F
SET Z=....
if %Z%==...
if any other key to abort

Reply 2 of 2, by curvedline

User metadata
Rank Newbie
Rank
Newbie

@ECHO OFF
CLS
::COLOR 1F
ECHO [1;37;44m==================
ECHO Prince of Persia 1
ECHO ==================

a batch got a little messy, but just adding one had the similar effect of COLOR 1F
now i can simply tell the difference by its color instead of searching a word "abort" or "continue"

-------------------------------------------------
ECHO [1;37;44m
ECHO ==================
ECHO Prince of Persia 1
ECHO ==================
it added one empty line, is there a way to remove the line? if it is much trouble, then it is ok, ECHO [1;37;44m================== already achieved the effect, i will take this
thanks for a help