Client-side Fabric mod that places .schematic, .schem, and .litematic files in-game.
- Fabric Loader 0.19.3+ and Fabric API 0.129.0+ for Minecraft 1.21.7
- Anti-cheat fully disabled — this mod sends non-vanilla packets. Tested with im-fast.
- Custom
/icommand on the server — the mod runs/i <blockname>for every block. Your server must have a command that gives items by name. - Creative-mode-like abilities on the server (no block placement restrictions).
- Install Fabric Loader and Fabric API for 1.21.7.
- Put the mod jar in your
mods/folder. - Place schematic files (
.schematic,.schem, or.litematic) in aschematics/folder next to your Minecraft run directory (the same folder that containsmods/).
All commands are client-side — type them in chat.
Places a schematic in the world. The filename is relative to the schematics/ folder (include the extension).
<filename>— path insideschematics/, include the extension, e.g.mybuild.schematic<ox> <oy> <oz>— world coordinates where the schematic origin goes
Supported formats: .schematic, .schem, .litematic
Example: /placeOutSchematic house.schem 100 64 200
Stops the current placement. The loop halts before the next block.
Teleports you to the given coordinates (client and server).
Test command — prints "Hello, World!" if the mod is loaded.
Place schematic files in a schematics/ folder next to your Minecraft run directory:
<run-directory>/
├── schematics/
│ ├── mybuild.schematic # Schematica format
│ ├── mybuild.schem # Sponge format
│ └── mybuild.litematic # Litematica format
├── mods/
│ └── schematicplacer-x.x.x.jar
└── ...
- Blocks already matching the schematic are skipped — safe to run again over a partially placed build.
- The mod does not manage your inventory. The server's
/icommand is responsible for giving you the correct blocks. - Only tested with anti-cheat fully disabled.