cc-tweaked-lua/build.lua

14 lines
250 B
Lua
Raw Normal View History

2023-09-21 01:24:08 -05:00
args = {...}
intLength = args[1]
intHeight = args[2]
for i=0, intHeight do
2023-09-21 01:26:31 -05:00
turtle.placeDown()
2023-09-21 01:24:08 -05:00
for j=0, intLength-1 do
turtle.forward()
turtle.placeDown()
end
turtle.up()
turtle.turnLeft()
turtle.turnLeft()
end