TehNoiseBomb_

ComputerCraft 1.75 - 9x9 Farming - moveHome

Apr 13th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. --@Author: Zach Combs aka TehNoiseBomb
  2. --@Version: 1.0
  3.  
  4. local moveLine = assert(loadfile("moveLine")) --Load the moveLine code as a variable that can be called as a function
  5.  
  6. --This code is mostly self-explanatory
  7. --The turtle will move back to the starting location and rotate to be facing east again
  8. turtle.turnLeft()
  9. moveLine()
  10. turtle.turnLeft()
  11. moveLine()
  12. turtle.turnLeft()
  13. turtle.turnLeft()
Add Comment
Please, Sign In to add comment