Re-Dimension Stages
This is an unofficial rework of the Dimension Stages mod, developed to support modern versions of Minecraft.
Requirements for operation: Before installation, you need to install the Game Stages mod.
Configuration system: Configuration is done through CraftTweaker, providing flexible customization options.
Basic usage:
First import the package:
import mods.redimstages.ReDimensionStages;
Configuration examples:
Restricting access to the Twilight Forest dimension by requiring the "twilightforest" stage:
ReDimensionStages.restrict("twilightforest:twilight_forest", "twilightforest");
Access to the dimension only when having two stages simultaneously:
ReDimensionStages.restrict("twilightforest:twilight_forest", "stage1", "stage2");
Setting up a custom denial message when access is refused:
ReDimensionStages.restrictWithMessage("twilightforest:twilight_forest", "Cannot go to twilight forest!", "twilightforest");
Main features:
- Stage-based dimension access control
- Flexible requirement system (single or multiple stages)
- Ability to customize player messages
- Seamless integration with the existing Game Stages system
The mod is perfect for creating progressive dimension exploration systems in your modpacks.