(For game versions: 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, 1.20, 1.21 and newer)
A spigot/bukkit plugin to make minecarts worth building.
Place a powered rail on a boost block (redstone block by default) to build high-speed rail. Place on any other block to get a regular powered rail.
High-speed rails are by default 4x faster than regular powered rails, ie. 32 m/s, or 115 km/h. This is as fast as rocket powered elytra flight.
The high-speed rail multiplier can be temporarily changed with the /hsrails command, or permanently changed in the config. The boost block is also configurable. See Usage section for commands and config options.
To help cope with the higher speeds, there is also a hard brake block available (soul sand by default). If you place an unpowered power rail on a hard brake block, the cart will decelerate faster than default. See Usage section for configuration options.
Note: please read the Design sections on how to keep your carts from derailing at high speeds.
Note: there seems to be a game limitation for speed but not momentum, and it seems to be around multiplier of 4x. Multipliers higher than 4x usually result in increased momentum, but not higher top speeds. That means the carts will coast for longer, even though they appear to have the same top speed.
Note: the plugin is compatible with the Improved Minecarts experiment. It will simply apply the multiplier on top of the `minecartMaxSpeed` gamerule.
Use /hsrails <multiplier> to tweak how fast high-speed rails are. Multiplier must be between 1 and 8.
Example: set multiplier to 4
/hsrails 4
This is the default HsRails/config.yml:
speedMultiplier: 4.0
boostBlock: "minecraft:redstone_block"
hardBrakeMultiplier: 8.0
hardBrakeBlock: "minecraft:soul_sand"
Allowed values are:
>= 1
<= 8minecraft:. For example, type in "minecraft:stone" for stone block as boost block."any", every powered rail will be a high speed powered rail.>= 1boostBlock for details). any is not allowed here.
You must be aware of a couple of things while building high-speed tracks:
Derailing at high speeds is a limitation of the game itself, and is probably the reason why rails are so slow in vanilla Minecraft. Thus, when designing your high-speed tracks, you will have to design them like real high-speed train tracks: long stretches with smooth turns.
These are my recommendations for building efficient high-speed tracks:
To maintain high speeds you must of course build your tracks out of high-speed rails, because regular powered rails will slow you down. Only mix in regular powered rails in turns and slopes as mentioned above.
If you want to stop a high speed cart quickly, for example if you have stations/stops on your route, you can use hard brake blocks with unpowered powered rails.
Adapted from varesa's Minecart Speedplus.
Thanks to:
- LordNinka for discovering the effects of speed vs. momentum at high multipliers.
- TheWallaceman105 for bringing forth the idea of hard brake blocks and helping during development by testing.
- Janicki92 for key insights that finally resolved the infinite momentum bug.
- GoodrichDev for testing on Folia.
- gavinft for submitting code to support the new `minecartMaxSpeed` gamerule.