Mincart Slash Speed
No reviews yet
Created for the speed of every Minecart! Different speed settings from the original version! Pure server-side mod.
Adds new methods of transportation for players.
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Neoforge is a fork of the Minecraft Forge available for versions 1.20.1+ of Minecraft. Many Forge mods are compatible with Neoforge and vice versa.
Fabric is a mod loader for versions 1.14+ of Minecraft, particularly popular for client side and optimization mods.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
About
Project Details
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.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
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
- Install Fabric Loader (0.19.3+)
- Download the mod JAR from Releases
- Place the JAR file in your server's
mods/folder - 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 Minecartminecraft:chest_minecart— Minecart with Chestminecraft:furnace_minecart— Minecart with Furnaceminecraft:tnt_minecart— Minecart with TNTminecraft:hopper_minecart— Minecart with Hopperminecraft: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 Minecartminecraft:chest_minecart— Minecart with Chestminecraft:furnace_minecart— Minecart with Furnaceminecraft:tnt_minecart— Minecart with TNTminecraft:hopper_minecart— Minecart with Hopperminecraft: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
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
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources