LearnProjectsResourcesToolsReviewsConnect Sign up
CMDBLOCK · Resources

Every command,
tool & tip.

Everything we teach in one place — Bedrock and Java, side by side.

Browse the library
Command Library

Every command we teach

Tap any command for syntax, a working example, and a live run.

Unknown command? Ask the crew — Discord opens Jul 20
Community Tools

The tools we open every day

These aren't ours — they're third-party tools we use ourselves. Worth bookmarking.

Better Bedrock

BEDROCK

The most customizable texture pack + UI overhaul for Bedrock — HUDs, waypoints, dark mode, and a whole platform where creators share packs.

betterbedrock.com

MCStacker

JAVA

The classic. Visual builders for NBT, JSON text components, target selectors, and entity summoning.

mcstacker.net

bridge. editor

BEDROCK

The most polished visual add-on editor for Bedrock. JSON UI, manifests, behavior packs, the works.

bridge-core.app

Minecraft Wiki

BOTH

The reference. When the syntax has changed, check the wiki before anything else.

minecraft.wiki

MCBE Essentials

BEDROCK

Mobile-friendly NBT editors and cheat sheets when you're on your phone fixing a redstone build.

mcbe-essentials.github.io

Blockbench

BOTH

Free 3D model editor that exports straight to Java and Bedrock. Custom mobs, custom items, custom everything.

blockbench.net

Snowstorm

BEDROCK

Browser-based particle editor for Bedrock. Live preview, export-ready JSON.

snowstorm.app

MCPEDL

BEDROCK

Largest Bedrock add-on hub. Maps, mods, textures, behavior packs — all free.

mcpedl.com
Pro tips

Six things we wish we'd known

Quick reminders that save hours when you're knee-deep in a command chain.

Always test in a copy

Copy the world before running anything destructive. /fill can replace 32,768 blocks in a single tick — undo is not a feature.

32,768 blocks · one tick · no undo

Name your command blocks

Rename them to describe what they do (Anvil → command block). Future-you will know why that chain exists.

Start with /say for debugging

Before chaining /execute, prove the trigger fires by sending a chat message. It's the simplest "did this run?" tool.

Keep ticking areas small

Bedrock allows max 10 per world. Treat them like budget — only the loop areas need them.

Tags beat scoreboards for yes/no

Use /tag for boolean states. Save scoreboards for actual numbers — counts, coins, kills.

Chain blocks run in one tick

Order matters: Impulse → Chain → Chain → Chain. Set conditional and unconditional carefully. They all fire on the same tick if powered.