Last active
June 13, 2022 23:20
-
-
Save Mashpoe/4ad6bdd6492bea7993ae0018aececcfa to your computer and use it in GitHub Desktop.
Starts up a Minecraft server and restarts it whenever it crashes. If you type "stop" in the server console, the server will close without restarting.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:loop | |
java -jar server.jar nogui | |
echo ERROR CODE: %errorlevel% | |
if not %errorlevel%==0 goto :loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment