Installation

  1. Download and drop into the plugins folder the AdrianSRCore plugin: https://www.spigotmc.org/resources/adriansr-core-the-adriansr-plugins-api.64289/

  2. Download and drop into the plugins folder the WorldEdit plugin: https://dev.bukkit.org/projects/worldedit

  3. Download and drop into the plugins folder the BattleRoyale plugin.

  4. Start the server!

Java 16

If your server is running on Java 16 you will have to add the following argument to your start arguments:

--illegal-access=permit

Example:

@echo off
java --illegal-access=permit -Xms1G -Xmx1G -jar paper-1.16.5-788.jar
pause

Java 17

If your server is running on Java 17 you will have to add the following argument to your start arguments:

---add-opens java.base/java.net=ALL-UNNAMED

Example:

@echo off
java --add-opens java.base/java.net=ALL-UNNAMED -Xms1G -Xmx1G -jar paper-1.16.5-788.jar
pause

Last updated