Mincart Slash Speed

Quick rating

Mincart Slash Speed

No reviews yet

Created for the speed of every Minecart! Different speed settings from the original version! Pure server-side mod.

Player Transport
Mod Loaders
Forge
NeoForge
Fabric
Minecraft
26.2

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Unsupported
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
minecart_speed-1.0.0-forge-26.2.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Minecart Speed

A server-side Fabric mod for Minecraft 26.2 that allows per-minecart speed control via commands. Set different speeds for individual minecarts instead of a global speed!

Features

  • Per-minecart speed control — each minecart can have its own speed
  • Persistent — custom speeds survive server restarts and chunk unloads
  • Server-side only — clients don't need to install this mod
  • Simple commands — easy-to-use slash commands with entity selectors

Installation

  1. Install Fabric Loader (0.19.3+)
  2. Download the mod JAR from Releases
  3. Place the JAR file in your server's mods/ folder
  4. Start the server

Note: This mod only needs to be installed on the server. Clients connecting to the server do not need to install anything.

Commands

All commands require OP level 2 (admin) permission.

Set Speed

/minecartspeed set <targets> <speed>

Set the maximum speed for one or more minecarts.

  • <targets> — entity selector (e.g. @e[type=minecraft:minecart,limit=1])
  • <speed> — speed in blocks per second (vanilla default is 8.0)

Examples:

# Set the nearest minecart to 20 blocks/s (2.5x vanilla speed)
/minecartspeed set @e[type=minecraft:minecart,limit=1,sort=nearest] 20

# Set all minecarts within 10 blocks to 50 blocks/s
/minecartspeed set @e[type=minecraft:minecart,distance=..10] 50

# Set a specific minecart by tag
/minecartspeed set @e[type=minecraft:minecart,tag=express] 100

Get Speed

/minecartspeed get <targets>

Query the current custom speed of one or more minecarts.

Example:

/minecartspeed get @e[type=minecraft:minecart,limit=1,sort=nearest]

Output: Minecart [a1b2c3d4] custom speed: 20.00 blocks/s (1.0000 blocks/tick)

Remove Custom Speed

/minecartspeed remove <targets>

Remove custom speed and revert to vanilla speed (8 blocks/s).

Example:

/minecartspeed remove @e[type=minecraft:minecart,limit=1,sort=nearest]

Speed Reference

Blocks/s Description
8.0 Vanilla default
16.0 2x speed
32.0 4x speed
64.0 8x speed
100.0 12.5x speed (very fast!)

Supported Minecart Types

This mod works with all vanilla minecart types:

  • minecraft:minecart — Regular Minecart
  • minecraft:chest_minecart — Minecart with Chest
  • minecraft:furnace_minecart — Minecart with Furnace
  • minecraft:tnt_minecart — Minecart with TNT
  • minecraft:hopper_minecart — Minecart with Hopper
  • minecraft:command_block_minecart — Minecart with Command Block

Building from Source

git clone https://github.com/MomoLawson/minecart-slash-speed.git
cd minecart-slash-speed
./gradlew build

The compiled JAR will be in build/libs/.

Technical Details

  • Custom speed is stored in the minecart's NBT data under the key MinecartSpeedModSpeed
  • Speed is stored in blocks per second and converted to blocks/tick internally (÷20)
  • The mod uses a Mixin on AbstractMinecart.getMaxSpeed() to override vanilla speed limits
  • Compatible with other mods that don't modify minecart speed behavior

License

MIT

Minecart Speed

A server-side Fabric/Forge/NeoForge mod for Minecraft 26.2 that allows per-minecart speed control via commands. Set different speeds for individual minecarts instead of a global speed!

Features

  • Per-minecart speed control — each minecart can have its own speed
  • Persistent — custom speeds survive server restarts and chunk unloads
  • Server-side only — clients don't need to install this mod
  • Simple commands — easy-to-use slash commands with entity selectors
  • Multi-platform — supports Fabric, Forge, and NeoForge

Installation

Download the JAR for your mod loader:

Mod Loader JAR File
Fabric minecart_speed-fabric-1.0.0.jar
Forge minecart_speed-forge-1.0.0.jar
NeoForge minecart_speed-neoforge-1.0.0.jar

Place the JAR file in your server's mods/ folder and start the server.

Note: This mod only needs to be installed on the server. Clients connecting to the server do not need to install anything.

Commands

All commands require OP level 2 (admin) permission.

Set Speed

/minecartspeed set <targets> <speed>

Set the maximum speed for one or more minecarts.

  • <targets> — entity selector (e.g. @e[type=minecraft:minecart,limit=1])
  • <speed> — speed in blocks per second (vanilla default is 8.0)

Examples:

# Set the nearest minecart to 20 blocks/s (2.5x vanilla speed)
/minecartspeed set @e[type=minecraft:minecart,limit=1,sort=nearest] 20

# Set all minecarts within 10 blocks to 50 blocks/s
/minecartspeed set @e[type=minecraft:minecart,distance=..10] 50

# Set a specific minecart by tag
/minecartspeed set @e[type=minecraft:minecart,tag=express] 100

Get Speed

/minecartspeed get <targets>

Query the current custom speed of one or more minecarts.

Example:

/minecartspeed get @e[type=minecraft:minecart,limit=1,sort=nearest]

Output: Minecart [a1b2c3d4] custom speed: 20.00 blocks/s (1.0000 blocks/tick)

Remove Custom Speed

/minecartspeed remove <targets>

Remove custom speed and revert to vanilla speed (8 blocks/s).

Example:

/minecartspeed remove @e[type=minecraft:minecart,limit=1,sort=nearest]

Speed Reference

Blocks/s Description
8.0 Vanilla default
16.0 2x speed
32.0 4x speed
64.0 8x speed
100.0 12.5x speed (very fast!)

Supported Minecart Types

This mod works with all vanilla minecart types:

  • minecraft:minecart — Regular Minecart
  • minecraft:chest_minecart — Minecart with Chest
  • minecraft:furnace_minecart — Minecart with Furnace
  • minecraft:tnt_minecart — Minecart with TNT
  • minecraft:hopper_minecart — Minecart with Hopper
  • minecraft:command_block_minecart — Minecart with Command Block

Building from Source

Each platform has its own directory with its own build system:

# Fabric
cd fabric && ./gradlew build

# Forge
cd forge && ./gradlew build

# NeoForge
cd neoforge && ./gradlew build

The compiled JAR will be in build/libs/ under each platform directory.

Technical Details

  • Custom speed is stored in the minecart's NBT data under the key MinecartSpeedModSpeed
  • Speed is stored in blocks per second and converted to blocks/tick internally (÷20)
  • The mod uses a Mixin on AbstractMinecart.getMaxSpeed() to override vanilla speed limits
  • Compatible with other mods that don't modify minecart speed behavior

License

MIT

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works