summaryrefslogtreecommitdiff
path: root/staircase.lua
blob: 406ffba7e75b15e039b93d0c200d9c2c6bda21b8 (plain)
1
2
3
4
5
6
7
8
9
local p = peripheral.find"3d_printer"
for i = 0,15 do
	print(i)
	p.reset()
	p.setLabel("world's greatest staircase (4-thick) #"..i)
	p.addShape(i, 0, 12, i+1, 16, 16, "minecraft:block/chiseled_quartz_block")
	p.commit(1)
	os.pullEvent("3d_printer_complete")
end