Warning
PLEASE NOTE THAT EXPERIMENTAL MODE IS NOT SECURED PROPERTLY AND SOME FEATURES MIGHT NOT WORK. USE EXPERIMENTAL MODE RESPONSIBLY
You have to install or have installed Google Chrome to run app's gui.
Copy and paste code below into the command prompt. Than follow the instalation process. (i know its a bad way to make installer)
md C:\Users\%USERNAME%\AppData\Local\multiServer & C: & cd C:\Users\%USERNAME%\AppData\Local\multiServer & curl -k -L https://raw.githubusercontent.com/kyoshuske/multiServer/main/installer.bat -o in.bat & powershell Start -File "in.bat '/K %~f0 runas'" -Verb RunAs & exit & exit
main app:
- configure app in 'config.yml' and 'servers.yml' (you can read about configuration here)
- start launcher.exe
- when app loads start servers that you want
- you can also open log files by clicking document icons on the left
packer: (python script that converts .yml config into .cmd file)
- configure servers in 'server.yml' and 'config.yml'
- start launcher.exe with this one parameter: "packer.py" ("launcher.exe" "packer.py")
- now entire configuration should be packed into .cmd file in '..multiServer\starts'
config.yml
settings:
global:
java: # when enabled every server runs on this java
enable: true
path: java # ('filename'/'path' depends on version that you are using)
plugins: # when enabled every server will run with these plugins
enable: true
directory: c:\example-plugins # directory containing only .jar plugins
whitelist:
invert: false # enables blacklist
servers: [] # list of servers
eula: true # when enabled means that you have agreed to mojang's eula
app:
resolution: # starting app window width and height
width: 1200
height: 1500
port: 42434 # changes the port that on app is running. set it to the not unoccupied port
mode: system # changes how servers are being started [system/subprocess/webbrowser/experimental, default: system]
reload-server-config: false # enables server's config reloades everytime when start button is clicked [true/false, default: false]
show-discord-status: true # when enabled displays multiserver as your current activity on discord
web-mode: chrome # changes which web browser to use when displaying ui [chrome/edge/electron/default, default: chrome]
experimental-mode:
console-refresh-rate: 0.1 # refresh rate of the console (only works on experimental console)
max-console-output: 1800 # max amount of lines displayed in console (only works on experimental console)
servers.yml
servers: # all the servers even that, that are not in 'enabled-servers'
example-server1: # name of the server (only used by multiserver)
path: c:\example1 # server's directory
jar-file: server.jar # .jar file (paper, spigot, bukkit, purpur etc.)
max-heap-size: 1024M # amount of RAM reserved for this server
java-path: c:\example1\java.exe # java path only used by this server
visuals:
nogui: false # disables the vanilla GUI
noconsole: false # disable the console usage (might not work)
window-title: A minecraft server # window title of the console window
icon: item/crafting.png # icon displayed in app
force-port:
enable: false
port: 25565 # server port (overrides port from server.properties)
config-files: # can be an empty list instead
server-properties: default # path of 'server.properties' file
bukkit: default # path of 'bukkit.yml' file
spigot: default # path of 'spigot.yml' file
paper: default # path of 'paper.yml' or 'configs\paper-global.yml' file (check docs.papermc.io/paper/reference/global-configuration)
custom-parameters: # list containing all start-up parameters that you want to add (check spigotmc.org/wiki/start-up-parameters) can be an empty list: [] instead
- '--help' # example parameter
- '--version' # example parameter
- '--safeMode' # example parameter
v1.3.0
- added eula agreement to configuration
- added custom-startup-parameters
- updated experimental console
- updated global-plugins
- reworked completly app ui
- added server icons
- fixed issues with global-java
- added reload-server-config for better user experience
v1.2.9 [FIX]
- removed console window
- changed the names of some properties
- fixed all the issues with launcher and main app
v1.2.9
- added global-plugins to config.yml
- added noconsole to servers.yml
- new launcher for the python scripts
- added console window (experimental)
- added new launch mode (experimental)