Skip to content

Instantly share code, notes, and snippets.

@Mashpoe
Last active June 13, 2022 23:20
Show Gist options
  • Save Mashpoe/4ad6bdd6492bea7993ae0018aececcfa to your computer and use it in GitHub Desktop.
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.
@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