14 lines
250 B
Lua
14 lines
250 B
Lua
|
args = {...}
|
||
|
intLength = args[1]
|
||
|
intHeight = args[2]
|
||
|
for i=0, intHeight do
|
||
|
turtle.PlaceDown()
|
||
|
for j=0, intLength-1 do
|
||
|
turtle.forward()
|
||
|
turtle.placeDown()
|
||
|
end
|
||
|
turtle.up()
|
||
|
turtle.turnLeft()
|
||
|
turtle.turnLeft()
|
||
|
end
|