Back to mods
nbtMapper project artwork

CurseForge · Minecraft mod

nbtMapper

A Fabric client-side mod that automatically builds map art from NBT structure files — handles movement, inventory, block placement, and resupply with zero manual intervention.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which nbtMapper release should I use?

Updated yesterday
Latest stable file nbtmapper-1.10.0.jar
Game version 26.2
Loader Fabric

nbtmapper-1.10.0.jar targets 26.2 with Fabric. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is nbtMapper required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Fabric
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does nbtmapper-1.10.0.jar need?

nbtmapper-1.10.0.jar. Change the file and its required mods may change too.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add nbtMapper without breaking your instance.

Built for nbtmapper-1.10.0.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use nbtmapper-1.10.0.jar. It targets 26.2 with Fabric; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside nbtmapper-1.10.0.jar. It opens that exact file at the source.

About this project

What does nbtMapper add?

NbtMapper - Automatic Map Art Builder

Disclaimer: This mod is intended for map art building and creative projects. Use on multiplayer servers only if permitted by the server rules.

A Fabric client-side mod that helps you build map art from NBT structure files. Load your structure, set the coordinates, and the mod assists with movement, inventory management, block placement, and resupply.

Requirements

  • Minecraft 26.2
  • Fabric Loader
  • Fabric API
  • Java 25
  • A server with teleport commands (e.g., /home, /warp) for auto-resupply

Test server

Actively tested on mcfox.net — a Folia (multithreaded Paper) survival server. Non-commercial, no pay-to-win, no donations or purchases of any kind. Open to anyone; supports Minecraft 1.16 through 26.2 via ViaVersion, so you can join with whichever version you use this mod on and watch it build map art live.

Installation

  1. Install Fabric Loader for Minecraft 1.21.11
  2. Download and place the mod .jar into your mods/ folder
  3. Make sure Fabric API is also in the mods/ folder
  4. Launch the game

Quick Start

  1. Place your .nbt structure files into <game_dir>/nbtmapper/
  2. In-game, press Z to open the GUI
  3. Go to the Tasks tab, click an NBT file to load it
  4. On the Main tab, click New Site to set the build origin (auto-snaps to 128-block map grid)
  5. Configure your storage chests in the Storage tab (chest coordinates for each block type)
  6. Set your teleport commands in the Settings tab
  7. Click Start — the mod handles the rest

Features

Fully Automated Building

  • Loads NBT structures and places blocks in an optimized snake pattern
  • Automatically places cobblestone bases before carpet/surface blocks
  • Prefills nearby same-type blocks while in range for extra speed
  • Skips already-correct blocks instantly

Auto Resupply

  • Detects when inventory is low on a block type
  • Uses server teleport commands (e.g., /home, /warp) to travel to your configured storage area
  • Batch supply: fetches multiple block types in a single trip
  • Consolidates split stacks in inventory after fetching

Auto-Next Map

  • When a map completes, automatically loads the next NBT file (alphabetical order)
  • Offsets the build origin along X axis by the previous map's width
  • Perfect for building multi-map art pieces side by side
  • Toggle on/off via the Auto button on the Main tab

Session Persistence

  • Progress is auto-saved every 10 seconds
  • Remembers last loaded file, origin, settings, and running state
  • Resumes automatically after game restart if building was active

Safety Features

  • Loop detection: auto-pauses if stuck in a loop, resumes after 20 seconds
  • Block verification: checks previously placed blocks to ensure correctness
  • Stuck detection: repositions the player if they get stuck during building
  • Max retry limits on movement and placement attempts
  • Automatic error recovery during movement

GUI Overview

Press Z to open. The GUI has 4 tabs:

Main Tab

  • Build origin coordinates (read-only, set via New Site)
  • Large Start/Pause button
  • Progress display with manual set/reset
  • Auto toggle (auto-load next map on completion)
  • Debug toggle (shows real-time HUD overlay)

Tasks Tab

  • Lists all .nbt files in the nbtmapper/ folder
  • Click to load, X to delete
  • Shows progress count and [done] marker for completed maps
  • Open NBT Folder button for quick access

Storage Tab

  • Maps each block type to a chest location (X/Y/Z)
  • Edit coordinates directly in the GUI
  • Auto-saves on change

Settings Tab

  • TP to Store: command to teleport to your storage area
  • TP to Worksite: command to return to the build site
  • Update Home: command to update your home position before supply runs
  • Move Mode: Walk / Sprint / Creative Fly / Always Fly / Elytra

Configuration Files

All config files are stored in <game_dir>/nbtmapper/:

File Purpose
storage.json Block-to-chest coordinate mappings and teleport commands
settings.json Origin, move mode, auto-next, last loaded file, running state
&amp;amp;amp;amp;amp;lt;name&amp;amp;amp;amp;amp;gt;_progress.json Per-map build progress

Movement Modes

Mode Description
Walk Standard ground movement
Sprint Sprinting ground movement
Creative Fly Creative mode flight, disables on arrival
Always Fly Creative mode flight, stays enabled
Elytra Elytra-based flight

How It Works

The mod runs a state machine on each client tick:

NEXT → EQUIPPING → MOVING → PLACING → NEXT → ...
                                ↘ SUPPLYING (when low on blocks)
  • NEXT: Finds the next block to place, skips air/completed blocks in bulk
  • EQUIPPING: Switches hotbar to the correct block
  • MOVING: Navigates to within 4 blocks of the target
  • PLACING: Places the block and prefills nearby same-type blocks
  • SUPPLYING: Teleports to storage, fetches blocks, returns

Multiple states can chain in a single tick for efficient building.

NBT File Format

The mod reads standard Minecraft structure NBT files (.nbt). These can be created with:

  • Structure blocks in-game
  • External tools like NBT Studio or Amulet Editor
  • Map art generators that export to NBT format
  • Recommended: Online map art generators such as MapartCraft can convert images to NBT files

The mod reads the palette (block types) and blocks (positions), keeping only the topmost block per X/Z column.

Important Notes

  • Client-side only: This mod runs entirely on the client. No server-side installation needed.
  • Server rules: Always ensure your server permits building assistance tools before use.
  • Teleport commands: The resupply system relies on server-provided teleport commands (e.g., Essentials /home, /warp). Configure these in the Settings tab.
  • Creative fly: The default move mode requires creative flight ability. Switch to Walk/Sprint if playing in survival without fly permissions.
  • Backup: The mod places blocks in the world. Always have backups of important builds.
  • First run: On first launch, storage.json is created with default chest coordinates that won't match your server. You must configure your own chest locations in the Storage tab.

Keybindings

Key Action
Z Open/close GUI (auto-pauses when opening)

Community

Project description from CurseForge.

Pick your setup

nbtMapper by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

4 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

nbtMapper versions and loaders

7 of 7 releases match

Looking for an older file? The official CurseForge project page is in Resources.