Posted 10 September 2013 - 07:14 PM
Title: Mining Turtle help
I am trying to make a "Simple" turtle code but i can't seem to make it place a torch every 6 - 7 blocks. This is the entire code
http://pastebin.com/Ffsz4HCh
If there is any other helpful I am listening.
Also the function "Torch()" is what the placing thing is under.
if you notice it has
I put the ones there on purpose, originally the "while y = 1 do" line was "while y > 7" i only changed it to see if that would make it work (it did.. sorta)
I am trying to make a "Simple" turtle code but i can't seem to make it place a torch every 6 - 7 blocks. This is the entire code
http://pastebin.com/Ffsz4HCh
If there is any other helpful I am listening.
Also the function "Torch()" is what the placing thing is under.
if you notice it has
- while y < 7 do
- y = y + 1
- end
- while y = 1 do
- turtle.place()
I put the ones there on purpose, originally the "while y = 1 do" line was "while y > 7" i only changed it to see if that would make it work (it did.. sorta)
Edited on 10 September 2013 - 05:22 PM