View difference between Paste ID: hVaahEs4 and fkDjWqxg
SHOW: | | - or go back to the newest paste.
1
if turtle.getFuelLevel() < 1000 then
2
turtle.select(16)
3
turtle.refuel(64)
4
end
5
turtle.select(1) -- building cylinder
6
term.clear()
7
print("Building Cylinder")
8
local BuildLength = 0
9-
::CylLoop::
9+
::Loop::
10
print(BuildLength," Blocks have been placed.")
11
turtle.placeDown()
12
turtle.forward()
13-
BuildLength++
13+
if(BuildLength < 10) then BuildLength++ else goto Loop
14-
if(BuildLength < 10)
14+