Skip to content

Commit 05a4aeb

Browse files
authored
Merge branch 'Swofty-Developments:master' into master
2 parents 13a597d + 5967b1d commit 05a4aeb

3 files changed

Lines changed: 12 additions & 11 deletions

File tree

DockerFiles/Dockerfile.game_server

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ WORKDIR /app
66
RUN apt-get update && apt-get install -y jq unzip screen && apt-get clean
77

88
# Download SkyBlockCore.jar
9-
ADD https://github.com/Swofty-Developments/HypixelSkyBlock/releases/download/latest/SkyBlockCore.jar SkyBlockCore.jar
9+
ADD https://github.com/Swofty-Developments/HypixelSkyBlock/releases/download/latest/HypixelCore.jar HypixelCore.jar
1010

1111
# Download Services
1212
ADD https://github.com/Swofty-Developments/HypixelSkyBlock/releases/download/latest/ServiceAPI.jar ./ServiceAPI.jar
1313
ADD https://github.com/Swofty-Developments/HypixelSkyBlock/releases/download/latest/ServiceAuctionHouse.jar ./ServiceAuctionHouse.jar
1414
ADD https://github.com/Swofty-Developments/HypixelSkyBlock/releases/download/latest/ServiceBazaar.jar ./ServiceBazaar.jar
1515
ADD https://github.com/Swofty-Developments/HypixelSkyBlock/releases/download/latest/ServiceItemTracker.jar ./ServiceItemTracker.jar
16+
ADD https://github.com/Swofty-Developments/HypixelSkyBlock/releases/download/latest/ServiceDataMutex.jar ./ServiceDataMutex.jar
1617

1718
# Copy configuration data
1819
COPY ./configuration /app/configuration_files
@@ -58,5 +59,5 @@ RUN cp configuration_files/entrypoint.sh ./entrypoint.sh
5859

5960
RUN chmod +x entrypoint.sh
6061

61-
# Run all services in the background and keep SkyBlockCore in the foreground
62+
# Run all services in the background and keep HypixelCore in the foreground
6263
CMD ["sh", "entrypoint.sh"]

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ A video of me going through the guide [can be found here](https://www.youtube.co
2929
6. Follow the 'Game Server Setup Guide' below. (Note, if you want to run a cracked server, you must set "require-authentication" to true in your config)
3030
7. Follow the 'Service Setup Guide' below.
3131
8. Follow the 'Resource Pack Setup Guide' below.
32-
9. To give yourself ADMIN, log in and out of the server, go into your MongoDB compass, click on Minestom -> data, find your profile and set your rank to "ADMIN". Log back in and you'll have it.
32+
9. To give yourself ADMIN, log in and out of the server, go into your MongoDB compass, click on Minestom -> profiles and set your rank to "ADMIN". If there is not a rank field, create one just like `rank: ""ADMIN""`, log back in and you'll have it.
3333

3434
### Proxy Setup Guide
3535
1. Download 'SkyBlockProxy.jar' from the releases page [here](https://github.com/Swofty-Developments/HypixelSkyBlock/releases/tag/latest)
@@ -44,14 +44,14 @@ A video of me going through the guide [can be found here](https://www.youtube.co
4444
10. Start the proxy again using `java -jar velocity-3.4.0-SNAPSHOT-528.jar`. This will need to be on for your game servers to work.
4545

4646
### Game Server Setup Guide
47-
1. Download 'SkyBlockCore.jar' from the releases page [here](https://github.com/Swofty-Developments/HypixelSkyBlock/releases/tag/latest)
47+
1. Download 'HypixelCore.jar' from the releases page [here](https://github.com/Swofty-Developments/HypixelSkyBlock/releases/tag/latest)
4848
2. Make a folder called `configuration` in the same directory as the JAR file. (Note this should be placed differently to where your Proxy is)
4949
3. Download `resources.json` from [here](https://github.com/Swofty-Developments/HypixelSkyBlock/tree/master/configuration)
5050
4. Move this file into the `configuration` folder you just made.
5151
5. Create a folder called `skyblock` in the existing configuration folder.
5252
6. Download the [world files for the SkyBlock Hub, Prototype Lobby, and Island worlds.](https://www.mediafire.com/file/xxnxgkqejlh17fn/HypixelRecreationWorlds.zip/file)
53-
7. Get the Hypixel SkyBlock hub from the above download and put it in the configuration/skyblock/islands/ folder you made under the name `hypixel_skyblock_hub`, and the Prototype Lobby in configuration under `hypixel_prototype_lobby`.
54-
8. Get the Hypixel Island default template from the above download and put it in the configuration/skyblock/islands/ folder you made under the name `hypixel_skyblock_island_template`.
53+
7. Get the Hypixel SkyBlock hub from the above download and put it in the configuration/skyblock/islands/ folder you made under the name `hypixel_skyblock_hub`, and the Island Template under `hypixel_skyblock_island_template`.
54+
8. Get the Prototype lobby from the above download and put it in the configuration folder under the name `hypixel_prototype_lobby`..
5555
9. Get the item and collection folders from [here](https://github.com/Swofty-Developments/HypixelSkyBlock/tree/master/configuration/skyblock) and put them into your configuration/skyblock/ folder.
5656
10. There should be a `forwarding.secret` file where your Velocity JAR is, take this and put it into your `resources.json` under `velocity-secret`.
5757
11. Run the jar using `java -jar {Insert the JAR file} SKYBLOCK_ISLAND`, this will create an Island server that will latch onto your running proxy.
@@ -119,7 +119,7 @@ To add new servers like the Hub, Islands or Farming Island follow these steps:
119119
2. Add the following line to the end of the file, replacing `ServerType` with the type of server you want to add (e.g., `SKYBLOCK_HUB`, `SKYBLOCK_ISLAND`, etc.):
120120

121121
```bash
122-
screen -dmS SkyBlockCore_HUB java --enable-preview -jar SkyBlockCore.jar ServerType
122+
screen -dmS HypixelCore_HUB java --enable-preview -jar HypixelCore.jar ServerType
123123
```
124124

125125
3. Save the file and run `docker-compose up --build` again to apply the changes.
@@ -142,7 +142,7 @@ and then run the service command inside there. It will create its own screen ses
142142
=> Your Memurai isn't running. If this can not be fixed, try out [this](https://github.com/tporadowski/redis/releases) instead.
143143
2. `Preview features are not enabled for... Try running with '--enable-preview'`
144144

145-
=> try `java --enable-preview -jar SkyBlockCore.jar {ServerType}`
145+
=> try `java --enable-preview -jar HypixelCore.jar {ServerType}`
146146
3. Having issues connecting to the server?
147147

148148
=> Check if your velocity secret is the same everywhere including the limbo config.

configuration/entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ sed -i "s/secret: '.*'/secret: '$secret'/" ./settings.yml
1616
screen -wipe
1717

1818
# Start services in separate screen sessions
19-
screen -dmS SkyBlockCore_ISLAND java --enable-preview -jar SkyBlockCore.jar SKYBLOCK_ISLAND
19+
screen -dmS HypixelCore_ISLAND java --enable-preview -jar HypixelCore.jar SKYBLOCK_ISLAND
2020
sleep 20
21-
screen -dmS SkyBlockCore_HUB java --enable-preview -jar SkyBlockCore.jar SKYBLOCK_HUB
22-
screen -dmS SkyBlockCore_FARMING java --enable-preview -jar SkyBlockCore.jar SKYBLOCK_THE_FARMING_ISLANDS
21+
screen -dmS HypixelCore_HUB java --enable-preview -jar HypixelCore.jar SKYBLOCK_HUB
22+
screen -dmS HypixelCore_FARMING java --enable-preview -jar HypixelCore.jar SKYBLOCK_THE_FARMING_ISLANDS
2323
screen -dmS NanoLimbo java -jar NanoLimbo-1.9.1-all.jar
2424
screen -dmS ServiceAPI java -jar ServiceAPI.jar
2525
screen -dmS ServiceAuctionHouse java -jar ServiceAuctionHouse.jar

0 commit comments

Comments
 (0)