Skip to content

Instantly share code, notes, and snippets.

@webcrawls
Last active August 26, 2020 03:10
Show Gist options
  • Save webcrawls/34dea18036a10e563ec6dec671819123 to your computer and use it in GitHub Desktop.
Save webcrawls/34dea18036a10e563ec6dec671819123 to your computer and use it in GitHub Desktop.
Start script for KingdomsLive (and probably any other Minecraft server)
while true
do
java -Xms6G -Xmx6G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true -jar server.jar nogui
echo "Starting in 3..."
sleep 1
echo "Starting in 2..."
sleep 1
echo "Starting in 1..."
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment