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