Skip to main content
Shape commands let you draw geometric volumes and outlines across your 64×64×64 voxel space in one operation. Each command is interactive: the server will ask for a block type and one or more position markers. Supply arguments up front to skip some of the prompts.
Aliases: /zDraws a cuboid (rectangular box) defined by two corner positions. With no arguments, the block is inferred from your held block and the server asks you to mark two positions.
Examples:

Modes

The optional mode parameter changes the appearance of the resulting cuboid. The default mode is solid.
To use a mode, you must also supply a block ID or hand. For example: /cuboid hand hollow.
Aliases: /l, /lnDraws a single-block-wide line between two positions using a 3D Bresenham-style algorithm. The line always passes through the start and end points exactly.
Mark the start position, then the end position. The server places blocks at each computed step along the line.
Lines work in any direction — horizontal, vertical, or diagonal through all three axes at once.
Aliases: /triangle, /triDraws a filled triangle defined by three arbitrary positions. The command finds the longest edge of the triangle and sweeps lines from it toward the opposite vertex to fill the shape.
Mark three positions in any order. Because the fill algorithm sweeps from the longest edge, the resulting triangle may have small holes at certain orientations — hence “abnormal.”
The triangle is filled with individual block-wide lines. In some orientations, gaps of one block may appear along the edges. This is expected behavior.
Aliases: /sphere, /spDraws a solid sphere. You mark the center point first, then an offset point — the radius is computed as the largest axis-aligned distance between the center and the offset.
The command tests every block in the bounding cube against the sphere equation x² + y² + z² ≤ r² and places a block wherever the condition is satisfied.
The radius is capped at 32 blocks regardless of how far apart the center and offset points are. Large spheres near this limit can place tens of thousands of blocks and may cause a brief pause while the level reloads.