Files
Open-RSC-Docker-Home/Start_Single_Player_Game_Windows.cmd
2018-07-17 23:27:30 -04:00

33 lines
636 B
Batchfile

@echo off
echo:
echo Pulling recent updates from the Open-RSC Game repository.
echo:
make pull-game
echo:
echo:
echo Starting any stopped Docker containers.
echo:
make start
echo:
echo:
echo Compiling the game client.
echo:
call ant -f Game/client/build.xml compile
echo:
echo:
echo Compiling the game server.
echo:
call ant -f Game/server/build.xml compile
echo:
echo:
echo Starting the game client in a new window.
echo:
call START "" ant -f Game/client/build.xml runclient
echo:
echo:
echo Starting the game server in the current window.
echo:
call ant -f Game/server/build.xml runserver
echo:
pause