Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update server pack creator config #719

Open
wants to merge 1 commit into
base: feature/mod-additions
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion server pack creator profile/HOW-TO-RUN.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,30 @@ if you have any problems dont hesitate to ask us in our discord server! <https:/
#### if you get an error like "Error: could not find or load main class @user_jvm_args.txt"

then it means your default java runtime is not compatible. we recommend java 17, but 18 should work as well. to fix this, open `variables.txt` and replace JAVA="java" with
JAVA="path/to/your/java/installation/java.exe"
JAVA=path/to/your/java/installation/java.exe

note: it should not have quotes

example:

JAVA=C:/Program Files/Java/jdk-17/bin/java.exe

### Remember

Escape \ and : in your Java path on Windows with another \,
or replace all \ with /

Example
JAVA=C:\Program Files\Java\jdk-17\bin\java.exe

#### should be either

JAVA=C\:\\Program Files\\Java\\jdk-17\\bin\\java.exe

or

JAVA=C:/Program Files/Java/jdk-17/bin/java.exe

#### if you try starting it and get an error, where at the top it says it cannot parse your java path

check and see if the path it shows has 2 sets of quotes. if it looks like ""C:/Program Files/Java/jdk-17/bin/java.exe"", then remove quotes from you path specification.
Expand Down
6 changes: 6 additions & 0 deletions server pack creator profile/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# server pack creator files

files/settings to be used when creating a server pack using server pack creator

/icons and /properties can be added to your server pack creator home folder/server_files

launch server pack creator, file > load configuration > choose this one.

then select your modpack directory to build from, and select the icon and properties from here. then you should be good to generate the server pack!
Original file line number Diff line number Diff line change
@@ -1,42 +1,47 @@
#Minecraft server properties
#Wed Dec 23 23:04:12 CET 2020
#Thu Jan 09 01:30:23 GMT 2025
allow-flight=true
allow-nether=true
broadcast-console-to-ops=true
broadcast-console-to-ops=false
broadcast-rcon-to-ops=true
difficulty=hard
enable-command-block=true
enable-jmx-monitoring=false
enable-query=false
enable-jmx-monitoring=true
enable-query=true
enable-rcon=false
enable-status=true
enforce-whitelist=true
enforce-secure-profile=true
enforce-whitelist=false
entity-broadcast-range-percentage=100
force-gamemode=false
function-permission-level=2
gamemode=survival
generate-structures=true
generator-settings=
generator-settings={}
hardcore=false
hide-online-players=false
level-name=world
level-seed=
level-type=default
max-build-height=256
max-players=10
max-tick-time=120000
level-type=minecraft\:normal
max-chained-neighbor-updates=1000000
max-players=20
max-tick-time=60000
max-world-size=29999984
motd=Minecraft Chocolate Edition
network-compression-threshold=256
online-mode=true
op-permission-level=4
player-idle-timeout=0
prevent-proxy-connections=false
previews-chat=false
pvp=true
query.port=25565
rate-limit=0
rcon.password=
rcon.port=25575
require-resource-pack=false
resource-pack=
resource-pack-prompt=
resource-pack-sha1=
server-ip=
server-port=25565
Expand All @@ -45,8 +50,8 @@ snooper-enabled=false
spawn-animals=true
spawn-monsters=true
spawn-npcs=true
spawn-protection=16
sync-chunk-writes=true
spawn-protection=0
sync-chunk-writes=false
text-filtering-config=
use-native-transport=true
view-distance=8
Expand Down
116 changes: 0 additions & 116 deletions server pack creator profile/server pack creator configuration.conf

This file was deleted.

Loading