mirror of
https://github.com/guilhermewerner/tcc
synced 2025-06-15 14:35:16 +00:00
10 lines
695 B
Bash
Executable File
Vendored
10 lines
695 B
Bash
Executable File
Vendored
#!/bin/bash
|
|
|
|
JAVA="java"
|
|
JAR="paper-1.20.4-496.jar"
|
|
RAM="8192M"
|
|
FLAGS="-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 -Daikars.new.flags=true -Dusing.aikars.flags=https://mcflags.emc.gs"
|
|
|
|
echo "Launching server..."
|
|
${JAVA} -Xms${RAM} ${FLAGS} -jar ${JAR} --nogui
|