here how to make a nice batch file for chrmak5:
1. open up a new .txt file
2. paste the following code into it:
@echo off
ECHO.
ECHO CHRMAK5 batch file copyright (C) Matthew D. Stiles 2005.
ECHO.
ECHO This file may be distributed and altered freely at users own risk.
ECHO For more information on VERGE and chrmak5 see:
ECHO.
ECHO http://www.verge-rpg.com
ECHO.
IF NOT EXIST *.mak GOTO MAKNOTFOUND
IF NOT EXIST chrmak5.exe GOTO CHRMAK5NOTFOUND
IF EXIST CHRMAK5.exe GOTO CHRMAK5FOUND
:CHRMAK5FOUND
set /P makname=[Please enter .mak file name:]
ECHO.
chrmak5 %makname%
GOTO EOF
:CHRMAK5NOTFOUND
ECHO chrmak5.exe not found in this directory!
ECHO exiting...
GOTO EOF
:MAKNOTFOUND
ECHO No .mak files are within this directory!
ECHO exiting...
GOTO EOF
:EOF
ECHO.
ECHO Opperation Complete
Pause
@echo on
exit
3. save the file as a .bat
That'll work nicely on any system with a newer dos version it may work with win95 even but I'm not sure. if you don't want to have to push enter after your done just remove the Pause on in the EOF section. Hope this helps someone.
edit: put the code into a pre tag for clarity