Advertisement
Guest User

startup

a guest
Oct 20th, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. p = peripheral.wrap("right")
  2. while true do
  3.    if p.getStackInSlot(1) then
  4.       print("Item Detected in chest - Mining....")
  5.       rs.setBundledOutput("bottom" , colors.black)
  6.       sleep(.5)
  7.       rs.setBundledOutput("bottom" , 0)
  8.       turtle.digDown()
  9.       sleep(5)
  10.       turtle.forward()
  11.       turtle.placeDown()
  12.       sleep(2)
  13.    else
  14.       print("No item Detected.  Waiting....")
  15.       sleep(5)
  16.    end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement