Advertisement
Rieu

Obsidian forever

May 17th, 2015
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.79 KB | None | 0 0
  1. --Author: Ferrwolf
  2. -- This program is designed for user to place lava in two 2x18 areas
  3. -- connected by one block removed in the center on the end where the user started digging.
  4. -- Pour water on lava and run turtle program. Instant obsidian. :)
  5. -- this is an example ==================
  6. --                    ==================
  7. --                    =
  8. --                    ==================
  9. --                    ==================
  10. -- Each equal sign is where the blocks should be removed and lava placed.
  11.  
  12. -- Turtle mines the first row of obsidian
  13. for i=0,18 do
  14.   while not turtle.forward() do
  15.     turtle.attack()
  16.     turtle.dig()
  17.   end
  18. end
  19.  
  20. -- Sets the turtle up to mine the second row
  21. turtle.turnRight()
  22. turtle.dig()
  23. while not turtle.forward() do
  24.   turtle.attack()
  25.   turtle.dig()
  26. end
  27. turtle.turnRight()
  28.  
  29. -- Turtle mines the second row
  30. for i=0,17 do
  31.   while not turtle.forward() do
  32.     turtle.attack()
  33.     turtle.dig()
  34.   end
  35. end
  36.  
  37. -- Turtle moves the the second plot and prepares to mine the 3rd row
  38. turtle.turnLeft()
  39. turtle.dig()
  40. while not turtle.forward() do
  41.     turtle.attack()
  42.     turtle.dig()
  43. end
  44. turtle.dig()
  45. while not turtle.forward() do
  46.     turtle.attack()
  47.     turtle.dig()
  48. end
  49. turtle.turnLeft()
  50.  
  51. -- Turtle mines the 3rd row
  52. for i=0,17 do
  53.   while not turtle.forward() do
  54.     turtle.attack()
  55.     turtle.dig()
  56.   end
  57. end
  58.  
  59. -- Turtle prepares to mine 4th row
  60. turtle.turnRight()
  61. turtle.dig()
  62. while not turtle.forward() do
  63.     turtle.attack()
  64.     turtle.dig()
  65. end
  66. turtle.turnRight()
  67.  
  68. -- Turtle mines the 4th row
  69. for i=0,17 do
  70.   while not turtle.forward() do
  71.     turtle.attack()
  72.     turtle.dig()
  73.   end
  74. end
  75.  
  76. -- Returns turtle to starting point
  77. turtle.turnRight()
  78. for i=0,3 do
  79. turtle.forward()
  80. end
  81. turtle.turnRight()
  82. turtle.back()
  83. print("Complete!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement