You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
312 B
Batchfile
11 lines
312 B
Batchfile
@echo off
|
|
title CTF
|
|
:MAIN
|
|
cls
|
|
echo Starting Capture The Flag...
|
|
:start
|
|
java -Xms2G -Xmx3G -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSIncrementalPacing -XX:ParallelGCThreads=2 -XX:+AggressiveOpts -d64 -server -jar minecraft_server.jar
|
|
goto start
|
|
echo The server has crashed or stopped.
|
|
echo.
|
|
pause |