c
or config
flag changes the name of the server.properties
file, which you can then name notserver.properties
. For the plugins
folder, you can use the P
or plugins
flag to change the name of the plugins
folder to plugouts
.c
or config
flag changes the name of the server.properties
file, which you can then name notserver.properties
. For the plugins
folder, you can use the P
or plugins
flag to change the name of the plugins
folder to plugouts
.ok so where i can find the startup flagsThe server has startup flags to change the names of these files. Thec
orconfig
flag changes the name of theserver.properties
file, which you can then namenotserver.properties
. For theplugins
folder, you can use theP
orplugins
flag to change the name of theplugins
folder toplugouts
.
java -jar paper.jar
, you'd append the startup flags. So for example java -jar paper.jar -P plugouts -c notserver.properties
.it says thisYou'd include it in your start script. Where you'd havejava -jar paper.jar
, you'd append the startup flags. So for examplejava -jar paper.jar -P plugouts -c notserver.properties
.
-c
before the -jar
? The -c
should come at the very end. So, not like this.java -c notserver.properties -jar paper.jar
java -jar paper.jar -c notserver.properties