@echo off :start color 3b echo **************************OBEY************************** echo ************************************************************ echo: echo An OBEY server daemon will begin running in the background. echo: echo To shut it down you can: echo 1) Run STOP SERVER.bat echo or echo 2) Use the task manager (CTRL+ALT+DEL) echo: echo: echo ************************************************************ echo ************************************************************ echo: SET /P ANSWER=Do you wish to continue (Y/N)? if /i {%ANSWER%}=={y} (goto :yes) if /i {%ANSWER%}=={yes} (goto :yes) goto :no :yes echo: echo An OBEY server has been launched. echo Close this window at any time. echo on start OBEY.exe -server -batchmode -screen-quality Low -port 57346 -name "OBEY TEST SERVER 01" -logFile obeyServerLog1.txt timeout /t 3 start OBEY.exe -server -batchmode -screen-quality Low -port 57345 -name "OBEY TEST SERVER 02" -logFile obeyServerLog2.txt timeout /t 3 start OBEY.exe -server -batchmode -screen-quality Low -port 57344 -name "OBEY TEST SERVER 03" -logFile obeyServerLog3.txt timeout /t 3 start OBEY.exe -server -batchmode -screen-quality Low -port 57343 -name "OBEY TEST SERVER 04" -logFile obeyServerLog4.txt timeout /t 3 start OBEY.exe -server -batchmode -screen-quality Low -port 57342 -name "OBEY TEST SERVER 05" -logFile obeyServerLog5.txt exit :no echo Cancelling... exit