Home > Commands

Small house model

In the Blockerzz game:

  1. Face the SE direction in the world,
  2. Open the command panel by pressing the / key (forward slash key) on your keyboard,
  3. Copy and paste the sequence below into the command panel,
  4. Click the "Go" button.

A small house will appear immediately to the South East of where you are standing.

// Small House model

begin setup

set walls wall_plaster_white
set walls_sill wall_plaster_white_with_pine_sill
set walls_lintel wall_plaster_white_with_pine_lintel
set pillars planks_pine
set roof roof_planks_overlapping_pine
set floor mat
set stairs mat
set ground_floor tile_ceramic_blue_and_white
set foundations wall_stone_grey_light_brick_1
set table table_wood

end setup

rotate random(0,90,180,270) ~2 ~2

// Build foundations and floor
fill ~0 ~-4 ~0 ~4 ~-1 ~4 foundations // Fill foundation
fill ~1 ~-1 ~1 ~3 ~-1 ~3 ground_floor // Ground floor

// Build ground floor walls
fill ~0 ~0 ~0 ~4 ~2 ~4 walls walls_with_windows walls_sill walls_lintel
fill ~0 ~0 ~0 ~0 ~4 ~0 pillars
fill ~0 ~0 ~4 ~0 ~4 ~4 pillars
fill ~4 ~0 ~4 ~4 ~4 ~4 pillars
fill ~4 ~0 ~0 ~4 ~4 ~0 pillars

// Build first floor
fill ~0 ~3 ~0 ~4 ~3 ~4 pillars
fill ~1 ~3 ~1 ~3 ~3 ~3 floor

fill ~1 ~4 ~0 walls
fill ~2 ~4 ~0 walls_sill
fill ~3 ~4 ~0 walls
fill ~1 ~5 ~0 walls
fill ~3 ~5 ~0 walls
fill ~2 ~6 ~0 walls_lintel

fill ~1 ~4 ~4 walls
fill ~2 ~4 ~4 walls_sill
fill ~3 ~4 ~4 walls
fill ~1 ~5 ~4 walls
fill ~3 ~5 ~4 walls
fill ~2 ~6 ~4 walls_lintel

// Build roof
fill ~-1 ~4 ~-1 ~-1 ~4 ~5 roof
fill ~0 ~5 ~-1 ~0 ~5 ~5 roof
fill ~1 ~6 ~-1 ~1 ~6 ~5 roof
fill ~2 ~7 ~-1 ~2 ~7 ~5 roof
fill ~3 ~6 ~-1 ~3 ~6 ~5 roof
fill ~4 ~5 ~-1 ~4 ~5 ~5 roof
fill ~5 ~4 ~-1 ~5 ~4 ~5 roof

fill ~0 ~6 ~3 ~0 ~8 ~3 walls

// Doorway
remove ~2 ~0 ~0 // Door block below window
remove ~1 ~0 ~-1 ~3 ~2 ~-1 // Blocks in front of the door
fill ~1 ~-2 ~-1 ~3 ~-1 ~-1 foundations // Door step

// Stairs
fill ~2 ~0 ~3 stairs
fill ~1 ~1 ~3 stairs
fill ~1 ~2 ~2 stairs
remove ~2 ~3 ~3
remove ~1 ~3 ~3
remove ~1 ~3 ~2

fill ~1 ~0 ~1 table