Decided to whip this up in 5 minutes, edit the file to your needs if you want.
- Code: Select all
@echo off
color 2
cls
:menu
ECHO.
ECHO. ................................
ECHO. Haven And Hearth -- Smart Menu
ECHO. ................................
ECHO.
ECHO. 1 - Start Haven and Hearth (ANEMONE/MAID)
ECHO. 2 - Start Haven and Hearth (HAVEN)
ECHO. 3 - Exit
ECHO.
SET /P M=CHOOSE AN OPTION =
IF %M%==1 GOTO MAID
IF %M%==2 GOTO HAVEN
IF %M%==3 GOTO EXIT
:MAID
java -Xms512m -Xmx1024m -jar maid.jar moltke.seatribe.se -r ./res
pause
exit
:HAVEN
java -Xms512m -Xmx1024m -jar haven.jar moltke.seatribe.se -r ./res
pause
exit
:EXIT
exit