Compatibility
Minecraft: Java Edition
26.1.2
Platforms
Links
Creators
Details
Licensed MIT
Published 2 days ago
A modified version of a nother plugin: https://modrinth.com/plugin/lynx-minecarts to function under more strict requirements (i.e. carts need players inside, and the cart must be named).
I've also added addition configuration options to allow adding custom cart speeds (under custom names), supporting speeds from 0-30 blocks per second.
# default speed of minecarts
defaultSpeed: 8.0
# 0 = disable, 1 = player directly in minecart, > 2 = player indirectly in minecart
maxIterations: 2
# "speed" can be from 0 - 30 (after 30 the speed doesn't change, probably friction or something)
# the double represents blocks per second as the calculation is: (blocks/second) / (ticks/second)
carts:
mediumSpeed:
speed: 12.0
name: "MediumSpeed"
fastSpeed:
speed: 20.0
name: "FastSpeed"
fastestSpeed:
speed: 30.0
name: "FastestSpeed"
to add a new speed simply add a new entry under "carts", add the yml name "mediumSpeed" as an example, then under that, add the in-game name you want to activate the speed, and the speed that it should go at. speeds 0-30 are supported, after that -- you're on your own bud.

