HomeJavaModsM0-DevTools
M0-DevTools
M0-DevTools — screenshot 1M0-DevTools — screenshot 2M0-DevTools — screenshot 3

M0-Dev Tools

M0-Dev Tools is a client-side Fabric toolbox for Minecraft modders, builders, and technical players. It bundles overlays, HUDs, movement helpers, macros, scripting, and debugging tools into one mod.

Certain modules such as X-Ray, Freecam will require the mod to be installed on the server as well.

It was meant to be a personal project, but I decided to release it for public.

Feature overview

Visual overlays & inspectors

Building, movement & utility tools

Chat & workflow helpers

Macros, scripting & automation

Debugging & admin tools

Tweaks module

Customizable behavior modifications:

Block & Building utilities

Scripting

Open the scripting module with , (default) keybind.

Groovy: give yourself a diamond sword

import net.minecraft.item.Items
import net.minecraft.item.ItemStack

player.giveItemStack(new ItemStack(Items.DIAMOND_SWORD))

"Gave you a diamond sword!"

Kotlin: spawn particles around the player

import net.minecraft.particle.ParticleTypes
import kotlin.math.cos
import kotlin.math.sin

val particleManager = client.particleManager

for (i in 0 until 20) {
    val angle = Math.toRadians(i * (360.0 / 20))
    val x = player.x + cos(angle) * 1.5
    val y = player.y + 1.0
    val z = player.z + sin(angle) * 1.5

    particleManager.addParticle(
        ParticleTypes.HAPPY_VILLAGER,
        x, y, z,
        0.0, 0.1, 0.0
    )
}

"Spawned"
Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more