Last active
December 7, 2016 04:08
-
-
Save anpage/5f44a75dbb82c7c1296aecbbf5a5a012 to your computer and use it in GitHub Desktop.
Config for Duke Nukem with DOSBox Daum in Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[sdl] | |
fullscreen=true | |
fullresolution=desktop | |
output=direct3d | |
[render] | |
aspect=true | |
scaler=none | |
[autoexec] | |
@ECHO OFF | |
MOUNT C . | |
C: | |
:MENU | |
CLS | |
ECHO [1;41m[6B | |
ECHO [20C╔══════════════════════════════════════╗ | |
ECHO [20C║ Duke Nukem ║ | |
ECHO [20C╠══════════════════════════════════════╣ | |
ECHO [20C║ 1) Episode 1: Shrapnel City ║ | |
ECHO [20C║ 2) Episode 2: Mission: Moonbase ║ | |
ECHO [20C║ 3) Episode 3: Trapped in the Future ║ | |
ECHO [20C╟──────────────────────────────────────╢ | |
ECHO [20C║ Esc) Exit ║ | |
ECHO [20C╠══════════════════════════════════════╣ | |
ECHO [20C║ Please select an episode: ║ | |
ECHO [20C╚══════════════════════════════════════╝ | |
ECHO [0m | |
CHOICE /C123 /N /M "[17;48H" | |
if ERRORLEVEL 4 GOTO EXIT | |
if ERRORLEVEL 3 GOTO EPISODE3 | |
if ERRORLEVEL 2 GOTO EPISODE2 | |
if ERRORLEVEL 1 GOTO EPISODE1 | |
:EPISODE1 | |
CLS | |
CD C:\DUKE1 | |
DN1.EXE | |
GOTO MENU | |
:EPISODE2 | |
CLS | |
CD C:\DUKE2 | |
DN2.EXE | |
GOTO MENU | |
:EPISODE3 | |
CLS | |
CD C:\DUKE3 | |
DN3.EXE | |
GOTO MENU | |
:EXIT | |
EXIT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This uses ANSI escape sequences for the episode select menu. Make sure to copy from the
Raw
version and paste it into a file with the DOS CP437 encoding. It will not render properly otherwise.