When I try to install it on docker and I follow all the steps I come to find issues like run como configuration files and that there are no prototype servers
The Dockerfile tries to copy folders that don't exist at the expected paths:
Lines 42-56 in DockerFiles/Dockerfile.game_server
RUN cp -R configuration_files/songs ./configuration/skyblock/songs
RUN cp -R configuration_files/collections ./configuration/skyblock/collections
RUN cp -R configuration_files/items ./configuration/skyblock/items
RUN cp -R configuration_files/SkyBlockPack ./configuration/skyblock/SkyBlockPack
RUN cp -R configuration_files/pack_textures ./configuration/skyblock/pack_textures
ERROR [game_server 18/24] RUN cp -R configuration_files/songs ./configuration/skyblock/songs
0.385 cp: cannot create directory './configuration/skyblock/songs': No such file or directory
The configuration/entrypoint.sh script doesn't start the PROTOTYPE_LOBBY server, which is the first server players connect to
Lines 18-27 in configuration/entrypoint.sh
screen -dmS HypixelCore_ISLAND java --enable-preview -jar HypixelCore.jar SKYBLOCK_ISLAND
sleep 20
screen -dmS HypixelCore_HUB java --enable-preview -jar HypixelCore.jar SKYBLOCK_HUB
screen -dmS HypixelCore_FARMING java --enable-preview -jar HypixelCore.jar SKYBLOCK_THE_FARMING_ISLANDS
screen -dmS NanoLimbo java -jar NanoLimbo-1.9.1-all.jar
screen -dmS ServiceAPI java -jar ServiceAPI.jar
screen -dmS ServiceAuctionHouse java -jar ServiceAuctionHouse.jar
screen -dmS ServiceBazaar java -jar ServiceBazaar.jar
screen -dmS ServiceItemTracker java -jar ServiceItemTraacker.jar # Also typo here
After fixing Issues #1, #2, and #3, players can connect but are immediately rejected by PROTOTYPE_LOBBY with version errors.
[ERROR]: [connected player] RodssPT: disconnected while connecting to e56ec1aa-d513-42dd-8e36-09c7a949f59f: Invalid Version, please use 1.21.8
maybe Im doing something wrong but I cant seem to figure out what
When I try to install it on docker and I follow all the steps I come to find issues like run como configuration files and that there are no prototype servers
The Dockerfile tries to copy folders that don't exist at the expected paths:
Lines 42-56 in DockerFiles/Dockerfile.game_server
RUN cp -R configuration_files/songs ./configuration/skyblock/songs
RUN cp -R configuration_files/collections ./configuration/skyblock/collections
RUN cp -R configuration_files/items ./configuration/skyblock/items
RUN cp -R configuration_files/SkyBlockPack ./configuration/skyblock/SkyBlockPack
RUN cp -R configuration_files/pack_textures ./configuration/skyblock/pack_textures
ERROR [game_server 18/24] RUN cp -R configuration_files/songs ./configuration/skyblock/songs
0.385 cp: cannot create directory './configuration/skyblock/songs': No such file or directory
The configuration/entrypoint.sh script doesn't start the PROTOTYPE_LOBBY server, which is the first server players connect to
Lines 18-27 in configuration/entrypoint.sh
screen -dmS HypixelCore_ISLAND java --enable-preview -jar HypixelCore.jar SKYBLOCK_ISLAND
sleep 20
screen -dmS HypixelCore_HUB java --enable-preview -jar HypixelCore.jar SKYBLOCK_HUB
screen -dmS HypixelCore_FARMING java --enable-preview -jar HypixelCore.jar SKYBLOCK_THE_FARMING_ISLANDS
screen -dmS NanoLimbo java -jar NanoLimbo-1.9.1-all.jar
screen -dmS ServiceAPI java -jar ServiceAPI.jar
screen -dmS ServiceAuctionHouse java -jar ServiceAuctionHouse.jar
screen -dmS ServiceBazaar java -jar ServiceBazaar.jar
screen -dmS ServiceItemTracker java -jar ServiceItemTraacker.jar # Also typo here
After fixing Issues #1, #2, and #3, players can connect but are immediately rejected by PROTOTYPE_LOBBY with version errors.
[ERROR]: [connected player] RodssPT: disconnected while connecting to e56ec1aa-d513-42dd-8e36-09c7a949f59f: Invalid Version, please use 1.21.8
maybe Im doing something wrong but I cant seem to figure out what