promotional bannermobile promotional banner

Commander Project

An extension of the data pack system. Featuring JSON events, commands, and advanced expressions!

File Details

0.6.0 (1.20.4)

  • B
  • Jul 11, 2024
  • 797.21 KB
  • 21
  • 1.20.4
  • Fabric

File Name

commander-0.6.0-1.20.4-build.16.jar

Supported Versions

  • 1.20.4

Curse Maven Snippet

Fabric

modImplementation "curse.maven:cmd-project-1009687:5523541"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

What's New:

User Changes:

  • Added cmd:expression to /execute if.
  • Updated EvalEx to v3.3.0. Release Notes...
  • Removed commander:store_expression_data and commander:store_nbt_data JSON commands, as they can be easily replaced by the brigadier command and don't offer any advantages.

Example replacement:

{
  "type": "commander:store_expression_data",
  "target": "level",
  "selector": "origin",
  "key": "my_cool_data",
  "expression": "random(0, 2)"
}

Becomes:

{
  "type": "commander:commands",
  "selector": "origin",
  "commands": [
    "cmd:data write level my_cool_data ${{random(0, 2)}}"
  ]
}