HomeJavaModsVoxelCleaner
VoxelCleaner

VoxelCleaner

VoxelCleaner is a Minecraft mod designed to provide powerful voxel-based editing capabilities via in-game commands. With features like room generation, area hollowing, history tracking (undo/redo), loot management, and block protection, it is an essential tool for creators, map builders, and server admins.


Table of Contents


Features


Installation

  1. Install Fabric Loader for Minecraft.
  2. Install the Fabric API.
  3. Download the VoxelCleaner mod JAR and place it in your mods folder.
  4. Launch the game using the Fabric profile.

Usage

Main Commands

/voxelcleaner

Alias: /vc
Clears (hollows) a rectangular area in front of the player.

/voxelcleaner <width> <height> <depth>
/voxelcleaner <width> <height> <depth> <material>
/voxelcleaner <width> <height> <depth> <material> <force>
/voxelcleaner <width> <height> <depth> <material> <force> <loot>

Parameters:


/voxelroom

Alias: /vr
Creates a fully built room with walls, floor, and ceiling.

/voxelroom <width> <height> <depth> <walls> <floor> <ceiling>
/voxelroom <width> <height> <depth> <walls> <floor> <ceiling> <force>
/voxelroom <width> <height> <depth> <walls> <floor> <ceiling> <force> <loot>

Parameters:


History Commands

/voxelundo

Alias: /vcu
Undoes the last voxel action.

/voxelundo
/voxelundo <count>

/voxelredo

Alias: /vcr
Redoes previously undone voxel actions.

/voxelredo
/voxelredo <count>

/voxelhistory

Alias: /vch
Displays the command history for the current player.

/voxelhistory
/voxelhistory <count>

Notes

Configuration

All constants are centralized in VoxelConfig.java. Notable configuration options:

public static final int MAX_W = 64;
public static final int MAX_H = 64;
public static final int MAX_D = 64;
public static final int MAX_ACTIONS_PER_PLAYER = 10;
public static final int MAX_HISTORY_LINES = 20;
public static final String TIMEZONE = "America/New_York";

Adjust these values to fine-tune player limits, history depth, and size constraints.


Examples

# Hollow out a 10x5x10 area using default material
/voxelcleaner 10 5 10

# Hollow out a 10x5x10 area with stone shell and collect loot
/voxelcleaner 10 5 10 minecraft:stone true true

# Create a 7x4x7 room using different blocks for walls, floor, and ceiling
/voxelroom 7 4 7 minecraft:oak_planks minecraft:birch_planks minecraft:glass

# Create a 7x4x7 room and override protected blocks
/voxelroom 7 4 7 minecraft:oak_planks minecraft:birch_planks minecraft:glass true

# Undo the last 2 voxel actions
/voxelundo 2

# Redo the last undone voxel action
/voxelredo 1

# View the last 5 voxel actions for the current player
/voxelhistory 5

Troubleshooting


Dependencies


Contributors


License

This work is released under the Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication.

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