No-code builder

For players who want logic without learning Python first.

The builder is not a stripped-down side mode. It creates real programs, shares the same runtime as handwritten Python, and can drive the same devices, world-state conditions, and direct Material I/O routes.

Templates If / Else Direct routes World state
How it works

Flat blocks, predictable behavior.

  • Each guard intentionally applies to the next block only.
  • ELSE_NEXT is a flat marker, not a nested container.
  • World comparisons, redstone checks, and amount checks remain visible as explicit block types.
  • The output is still a readable Python script in the end.
Templates

Immediate entry points for common gameplay tasks.

Discovery and display

Hello World, Device Tour, Live Clock, Stock Check, and Tank Watch give immediate visual feedback on the computer and linked screens.

Weather and time

Rain Watch, Rain Lamp, Night Lamp, Thunder Alert, Heavy Rain Alert, and Evening Lights all react directly to world conditions.

Automation

Source->Sink and Source Fluids start direct routing between named Material I/O devices, while comparisons for storage, fluids, and redstone make reactive programs possible without typing code by hand.

Builder examples

What typical flows look like.

Night Lamp
IF world is night
  THEN set redstone output north to 15
ELSE
  set redstone output north to 0
SHOW "Night Lamp" with is_night and rain_level
Source->Sink Items
MOVE items
  FROM source_io / south
  TO sink_io / south
  SLOT 0
  AMOUNT 16
REPEAT every 20 ticks
Source Fluids
MOVE fluid
  FROM source_io / south
  TO sink_io / south
  TANK 0
  AMOUNT 1000 mB
REPEAT every 20 ticks
Block categories

What the builder already covers.

Actions

  • Text output and structured displays
  • Redstone writes
  • Local and direct Material I/O routing
  • World or device values shown on screen

Comparisons

  • Less than, greater than, equal to
  • Item and fluid thresholds
  • World time windows and rain strength

World conditions

  • Day or night
  • Rain, thunder, and moon phase
  • Dawn, evening, and custom time windows
Why it matters for the website

The builder is its own selling point.

Many Minecraft players want to build logic, but they do not want a mod that begins as pure code. The builder is the bridge between those audiences, and it now reaches practical source/sink automation instead of stopping at toy examples.