This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
chalenged's profile picture

Tower Maker

Started by chalenged, 03 April 2012 - 06:57 AM
chalenged #1
Posted 03 April 2012 - 08:57 AM
I made a program for a turtle to make a tower. It goes up to a certain height, and goes as wide as you want. It will then make a ladder at the far side of it. Comment with suggestions, and i give full allowance to edit and w/e, as long as i get credit for it.
http://pastebin.com/2TPxwy87
Jimmuli #2
Posted 16 April 2012 - 07:31 PM
At

heighti = read()
height = tonumber(heighti)
heighti = height

You could use

height = tonumber(read())

And at

widthi = read()
width = tonumber(widthi)
widthi = width

You could use

width = tonumber(read())

:)/>/>