Skip to content
DiffuseHyperion edited this page Mar 21, 2023 · 1 revision

Plugin Usage

This plugin was designed to be put in its separate server! Feel free to use bungeecord to the server or whatever, but don't put it on a server where its world has value, cuz its gonna be wrecked

Run /start as an OP to start the game. You need 2 players before you start!

DO NOT reload the server! This will cause problems. if you absolutely need to restart the plugin, do /restart.

Server will restart on its own! The plugin has an option to automatically setup restarting for you. If you want to set restarting up yourself, follow the guide below. If you are...

  • ...using linux:

    • Create a start.sh file somewhere in your server's root folder.

    • Copy and paste whatever commands you use to launch the server into start.sh ​

  • ...using windows:

    • Create a start.bat somewhere in your server's root folder.

    • Add the following code to the file:

@Echo off
:start:
cls
<your original server launch code>
goto start
  • Make sure to replace <your original server launch code> with whatever you use to launch your server, like java -jar spigot.jar -nogui

    • If you want to, place a pause right before goto start, causing the server to wait for your input before restarting.

    • Run start.bat whenever you want to start your server now.​