Enable Island Cakes by default + tooltip + README

This commit is contained in:
IntegerLimit 2023-06-17 22:59:58 +10:00
parent b1dcbcea19
commit 0d85d7b4a4
4 changed files with 12 additions and 8 deletions

View File

@ -11,6 +11,7 @@
SET FORGEJAR={{{forgeJar}}}
SET JAVA_PARAMETERS={{{jvmArgs}}}
:: Empty line to align with sh file
:: these you can edit
SET MIN_RAM={{{minRAM}}}
SET MAX_RAM={{{maxRAM}}}

View File

@ -22,7 +22,7 @@ dimensionaledibles {
B:enderApple=false
# Set to true to enable Island Cakes.
B:islandCake=false
B:islandCake=true
# Set to true to enable Nether Apple.
B:netherApple=false

View File

@ -28,6 +28,8 @@ recipes.remove(<dimensionaledibles:custom_cake>);
recipes.remove(<minecraft:cake>);
recipes.remove(<enderio:item_material:70>);
<dimensionaledibles:island_cake>.addTooltip(format.green("Used by Server Owners to send FTB Teams and Individuals to their Personal Islands! View the Server Information File on GitHub for more information!"));
//Cake Base
recipes.addShaped(<enderio:item_material:70>, [[<minecraft:sugar>, <minecraft:milk_bucket> | <minecraft:bucket>, <minecraft:sugar>], [<actuallyadditions:item_misc:4> | <actuallyadditions:item_misc:9>, <actuallyadditions:item_misc:4> | <actuallyadditions:item_misc:9>, <actuallyadditions:item_misc:4> | <actuallyadditions:item_misc:9>]]);

View File

@ -7,16 +7,16 @@ This server information file is split into two parts:
## Server Setup (In v1.6, hosting a server locally, on GNU/Linux, is broken. Please update to a newer version.)
### Downloading the Server
- Download the latest server zip file from GitHub or CurseForge.
- Download the latest server zip file from [GitHub](https://github.com/Nomi-CEu/nomi-ceu/releases) or [CurseForge](https://www.curseforge.com/minecraft/modpacks/nomi-ceu/files).
- Extract it.
### Launching The Server
- Run the `launch.bat` script (Windows) or the `launch.sh` script (GNU/Linux) to launch the server. These two scripts are called the **launchscripts**.
- Run the `launch.bat` script (Windows) or the `launch.sh` script (Apple/GNU/Linux) to launch the server. These two scripts are called the **launchscripts**.
- The first time you do this, the server will crash. To fix this, open the `eula.txt` file, and change the value from false to true.
### Server Options
- You can set your server RAM by changing the options in the launchscript. These are lines ***15 and 16*** for the `.bat` file, and lines ***16 and 17*** for the `.sh` file.
- You can enable the MC Server GUI by removing `nogui` in the launchscript. This is done in line ***19*** in the `.bat` file, and line ***20*** in the `.sh` file.
- You can set your server RAM by changing the options in the launchscript. These are lines ***16 and 17*** for both launchscripts.
- You can enable the MC Server GUI by removing `nogui` in the launchscript. This is done in line ***20*** for both launchscripts.
- There are many options of which you can change in your `server.properties` file, such as changing the description (change the `motd` value).
- You can change the server icon by replacing the `server-icon.png` file. Note that the icon must be ***64 by 64***.
@ -26,7 +26,6 @@ This server information file is split into two parts:
## Server Admin Information
### Island Cakes (available in versions 1.6.1-beta-4+)
There are Island Cakes available, which sends each team to a different void island. To set this up:
- Enable Island Cakes in the server config. Go to `/config/DimensionalEdibles.cfg` and change line ***25*** from `B:islandCake=false` to `B:islandCake=true`.
- Setup a way for players to go to their islands. The recommend way to do this is:
- Setup a kind of hub, where players can teleport to their islands. You can do this in the void, in admin-claimed chunks.
- Place two island cakes. These cannot be crafted, simply grab them from JEI, or the creative mode menu.
@ -35,8 +34,10 @@ There are Island Cakes available, which sends each team to a different void isla
#### How They Work + Options
Island Cakes and Personal Island Cakes do not get eaten. If you wish to make them be eaten, and be slowly consumed similar to Overworld, Void, Nether and End Cakes, change line ***332***, in `/config/DimensionalEdibles.cfg`, from `B:consumesFuel=false` to `B:consumesFuel=true`. To refill them, Pulsating Dust is used.
Island Cakes send each FTB Team to a personal island. They simply right-click the cake, and they will be sent to their team's island, or if their team has not done so before, an island will be created for them. This also applies to individuals not in any team.
Island Cakes send each FTB Team to a unique island. A player simply right-clicks the cake and will be sent to their team's island. If no such island exists, an island will first be created.
In contrast, Personal Island Cakes sends each individual to a seperate island. This is useful for individuals who want some personal space, apart from their team.
By default, Islands will be 60 Regions apart, placed in a spiral. Regions are an area of 32 by 32 chunks. You can change the spacing by changing the number value in line ***343***, in `/config/DimensionalEdibles.cfg`, to any value between 2 and 100. Note that this value is in Regions.
By default, Islands will be 60 Regions apart, placed in a spiral. Regions are an area of 32 by 32 chunks. You can change the spacing by changing the number value in line ***343***, in `/config/DimensionalEdibles.cfg`, to any value between 2 and 100. Note that this value is in Regions.
In line ***338***, you can change the dimension the Islands are spawned in. You may have to play around. To get a list of all dimensions, do `/forge dimensions` to get a list of all dimensions and their IDs. You can also change the y level the islands are spawned at, in line ***354***.