Advertisement
Guest User

Mine

a guest
Dec 26th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. local times = 0
  2. local j = 0
  3.  
  4. function Mine()
  5.   while turtle.detect() == true do
  6.     turtle.dig()
  7.     sleep(0.50)
  8.   end
  9.   turtle.forward()
  10.   sleep(0.50)
  11.   while turtle.detectUp() == true do
  12.     turtle.digUp()
  13.     sleep(0.50)
  14.   end
  15.   turtle.digDown()
  16. end
  17.  
  18. function Place(SlotNum)
  19.   turtle.select(SlotNum)
  20.   turtle.back()
  21.   turtle.placeUp()
  22.   turtle.forward()
  23. end
  24.  
  25. write("How many Digs ?")
  26. times = read()
  27.  
  28. for i=1, times do
  29.   j = j+1
  30.   Mine()
  31.   if j == 7 then
  32.     Place(16)
  33.     j = 0
  34.   end
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement