Faster Player Minecarts
PluginMIT

Faster Player Minecarts

Adds configurable options for minecarts speeds so long as the player is riding on the cart and the cart is named.

3
Downloads
0
Followers
2 days ago
Updated
📦
2
Versions

📖About Faster Player Minecarts

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"
# break speed
# this speed is how fast to take turns and slopes, I believe going above 14 causes "bounce backs"
# 12 is the sweet spot, 13 is pushing it
breakSpeed: 12.0

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.

The "maxIterations" allows you to have riddable mobs in the minecarts and so long as the cart is named and you are riding the mob, then the speed affect should still apply. This allows you to put happy ghasts or pigs for example in the cart and still have it function. The number is how tall the stack can be:

  • 0 means the check will not run and the speed will never be applied
  • 1 means only the player being directly in the minecart will apply the speed boost
  • 2 and over means that the player can be in a stack of mobs riding eachother up to N-1 creatures

(Icon is a screenshot from a server using the "Sketchbound" shader on painter mode)