Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 582 Bytes

activities2.md

File metadata and controls

16 lines (11 loc) · 582 Bytes

#Additional ScriptCraft Commands to Test:

  • A 2-block-wide road 100 blocks long:
/js box(blocks.cobblestone).right(1).times(2).fwd(1).left(2).times(100);
  • A hollow cylinder of iron with a 10-block radius and 30 blocks high:
/js cylinder0(blocks.iron, 10, 30);
  • A village of 16 houses arranged in a 4x4 grid:
/js cottage().right(10).times(4).left(40).fwd(10).times(4);
  • A rainbow with a radius of 20:
/js rainbow(20);

* A message in large block letters made of glowstone:
/js blocktype("Your message here", blocks.glowstone);