@@ -6,35 +6,39 @@ ServerTypes define the different game modes and locations that can be run as sep
66
77These server types are part of the SkyBlock gamemode and share SkyBlock-specific functionality.
88
9- | ServerType | Description | World Required |
10- | ------------| -------------| ----------------|
11- | ` SKYBLOCK_ISLAND ` | Player personal islands | ` hypixel_skyblock_island_template ` |
12- | ` SKYBLOCK_HUB ` | Main SkyBlock hub | ` hypixel_skyblock_hub ` |
13- | ` SKYBLOCK_SPIDERS_DEN ` | Spider's Den area | Custom world |
14- | ` SKYBLOCK_THE_END ` | The End dimension | Custom world |
15- | ` SKYBLOCK_DUNGEON_HUB ` | Dungeon hub area | Custom world |
16- | ` SKYBLOCK_THE_FARMING_ISLANDS ` | Farming Islands | Custom world |
17- | ` SKYBLOCK_GOLD_MINE ` | Gold Mine location | Custom world |
18- | ` SKYBLOCK_DEEP_CAVERNS ` | Deep Caverns area | Custom world |
19- | ` SKYBLOCK_DWARVEN_MINES ` | Dwarven Mines | Custom world |
9+ | ServerType | Description | World Required |
10+ | --------------------------------| -----------------| ------------------------------------|
11+ | ` SKYBLOCK_ISLAND ` | Personal Island | ` hypixel_skyblock_island_template ` |
12+ | ` SKYBLOCK_HUB ` | Hub | ` hypixel_skyblock_hub ` |
13+ | ` SKYBLOCK_SPIDERS_DEN ` | Spider's Den | ` hypixel_skyblock_spiders_den ` |
14+ | ` SKYBLOCK_THE_END ` | The End | ` hypixel_skyblock_the_end ` |
15+ | ` SKYBLOCK_CRIMSON_ISLE ` | Crimson isle | ` hypixel_skyblock_crimson_isle ` |
16+ | ` SKYBLOCK_DUNGEON_HUB ` | Dungeon hub | ` hypixel_skyblock_dungeon_hub ` |
17+ | ` SKYBLOCK_THE_FARMING_ISLANDS ` | Farming Islands | ` hypixel_skyblock_hub ` |
18+ | ` SKYBLOCK_GOLD_MINE ` | Gold Mine | ` hypixel_skyblock_gold_mine ` |
19+ | ` SKYBLOCK_DEEP_CAVERNS ` | Deep Caverns | ` hypixel_skyblock_deep_caverns ` |
20+ | ` SKYBLOCK_DWARVEN_MINES ` | Dwarven Mines | ` hypixel_skyblock_dwarven_mines ` |
21+ | ` SKYBLOCK_THE_PARK ` | The Park | ` hypixel_skyblock_the_park ` |
22+ | ` SKYBLOCK_GALATEA ` | Galatea | ` hypixel_skyblock_galatea ` |
23+ | ` SKYBLOCK_BACKWATER_BAYOU ` | Backwater Bayou | ` hypixel_skyblock_galatea ` |
2024
2125### Starting a SkyBlock Server
2226
2327``` bash
24- java -jar HypixelCore.jar SKYBLOCK_HUB
2528java -jar HypixelCore.jar SKYBLOCK_ISLAND
29+ java -jar HypixelCore.jar SKYBLOCK_HUB
2630java -jar HypixelCore.jar SKYBLOCK_SPIDERS_DEN
2731```
2832
2933## Non-SkyBlock Server Types
3034
3135These server types run independently of SkyBlock features.
3236
33- | ServerType | Description |
34- | ------------| -------------|
35- | ` PROTOTYPE_LOBBY ` | Prototype/testing lobby |
36- | ` BEDWARS_LOBBY ` | BedWars lobby server |
37- | ` BEDWARS_GAME ` | Active BedWars game server |
37+ | ServerType | Description |
38+ | ------------------------ | ------------------- -------------|
39+ | ` PROTOTYPE_LOBBY ` | Prototype/testing lobby |
40+ | ` BEDWARS_LOBBY ` | BedWars lobby server |
41+ | ` BEDWARS_GAME ` | Active BedWars game server |
3842| ` BEDWARS_CONFIGURATOR ` | BedWars map configuration tool |
3943
4044### Starting Non-SkyBlock Servers
@@ -106,11 +110,11 @@ The proxy will distribute players across all available instances.
106110
107111### Required Worlds
108112
109- | World | Location | Used By |
110- | -------| ----------| ---------|
111- | ` hypixel_skyblock_hub ` | ` configuration/skyblock/islands/ ` | SKYBLOCK_HUB |
113+ | World | Location | Used By |
114+ | ------------------------------------ | ----------------------------------- | -------- ---------|
115+ | ` hypixel_skyblock_hub ` | ` configuration/skyblock/islands/ ` | SKYBLOCK_HUB |
112116| ` hypixel_skyblock_island_template ` | ` configuration/skyblock/islands/ ` | SKYBLOCK_ISLAND |
113- | ` hypixel_prototype_lobby ` | ` configuration/ ` | PROTOTYPE_LOBBY |
117+ | ` hypixel_prototype_lobby ` | ` configuration/ ` | PROTOTYPE_LOBBY |
114118
115119### Custom Worlds
116120
@@ -119,16 +123,16 @@ Other locations require their own world files. These can be created or obtained
119123## Docker Reference
120124
121125``` yaml
122- # SkyBlock Hub
123- hypixelcore_hub :
124- environment :
125- SERVICE_CMD : java -jar HypixelCore.jar SKYBLOCK_HUB
126-
127126# SkyBlock Island
128127hypixelcore_island :
129128 environment :
130129 SERVICE_CMD : java -jar HypixelCore.jar SKYBLOCK_ISLAND
131130
131+ # SkyBlock Hub
132+ hypixelcore_hub :
133+ environment :
134+ SERVICE_CMD : java -jar HypixelCore.jar SKYBLOCK_HUB
135+
132136# Spider's Den
133137hypixelcore_spiders :
134138 environment :
0 commit comments