Datapack Debugger

A fabric mod for Minecraft 1.21, which allows you to set breakpoints in datapacks

File Details

datapack-debugger-1.1.0.jar

  • R
  • Jul 22, 2024
  • 281.06 KB
  • 22
  • 1.21
  • Fabric

File Name

datapack-debugger-1.1.0.jar

Supported Versions

  • 1.21

Curse Maven Snippet

Fabric

modImplementation "curse.maven:datapack-breakpoint-1067549:5553418"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Version 1.1

New Features

Get Function Stack

Use the /breakpoint stack command to get the current function call stack in the game. Example:

#test:test1
say 1
function test:test2
say 2

#test:test2
say A
#breakpoint
say B

At the breakpoint, executing /breakpoint stack will output:

test:test2
test:test

Run Command in Current Context

Use /breakpoint run <command> to run any command in the current context, similar to execute ... run ....