Skip to content

Instantly share code, notes, and snippets.

@Griefed
Created March 21, 2021 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Griefed/090cc7c1c2b283daa4b46f6cb85e5e00 to your computer and use it in GitHub Desktop.
Save Griefed/090cc7c1c2b283daa4b46f6cb85e5e00 to your computer and use it in GitHub Desktop.
Example for a fully configured serverpackcreator.conf file for the modpack Survive Create Prosper 4
# Path to your modpack. Can be either relative or absolute.
# Example: "./Some Modpack" or "C:\Minecraft\Some Modpack"
modpackDir = "./Survive Create Prosper 4"
# List of client-only mods to delete from serverpack.
# No need to include version specifics. Must be the filenames of the mods, not their project names on CurseForge!
# Example: ["AmbientSounds", "ClientTweaks", "PackMenu", "BetterAdvancement", "jeiintegration"]
clientMods = [AmbientSounds, BackTools, BetterAdvancement, BetterPing, cherished, ClientTweaks, Controlling, DefaultOptions, durability, DynamicSurroundings, itemzoom, jei-professions, jeiintegration, JustEnoughResources, MouseTweaks, Neat, OldJavaWarning, PackMenu, preciseblockplacing, SimpleDiscordRichPresence, SpawnerFix, TipTheScales, WorldNameRandomizer]
# Name of directories to include in serverpack.
# When specifying "saves/world_name", "world_name" will be copied to the base directory of the serverpack
# for immediate use with the server.
# Example: ["config", "mods", "scripts"]
copyDirs = [config, mods, scripts, seeds, defaultconfigs]
# Whether to install a Forge/Fabric server for the serverpack. Must be true or false.
includeServerInstallation = true
# Path to the Java executable. On Linux systems it would be something like "/usr/bin/java".
# Only needed if includeServerInstallation is true.
javaPath = "C:/Program Files/AdoptOpenJDK/jdk-8.0.275.1-hotspot/jre/bin/java.exe"
# Which Minecraft version to use.
# Example: "1.16.5".
# Only needed if includeServerInstallation is true.
minecraftVersion = "1.16.5"
# Which modloader to install. Must be either "Forge" or "Fabric".
# Only needed if includeServerInstallation is true.
modLoader = "Forge"
# The version of the modloader you want to install.
# Example for Fabric="0.7.3", example for Forge="36.0.15".
# Only needed if includeServerInstallation is true.
modLoaderVersion = "36.0.15"
# Include a server-icon.png in your serverpack. Must be true or false.
# Place your server-icon.png in the same directory as this cfg-file.
# If no server-icon.png is provided but is set to true, a default one will be provided.
# Dimensions must be 64x64!
includeServerIcon = true
# Include a server.properties in your serverpack. Must be true or false.
# Place your server.properties in the same directory as this cfg-file.
# If no server.properties is provided but is set to true, a default one will be provided.
# Default value is true
includeServerProperties = true
# Include start scripts for windows and linux systems. Must be true or false.
# Default value is true
includeStartScripts = true
# Create zip-archive of serverpack. Must be true or false.
# Default value is true
includeZipCreation = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment