Advertisement
Guest User

startup

a guest
Aug 27th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. p = peripheral.wrap("top")
  2. while true do
  3.   if p.getStackInSlot(1) then
  4.     print("Item detected in chest - Mining....")
  5.     shell.run("mine")
  6.   else
  7.     print ("No item detected.  Waiting...")
  8.     sleep(5)
  9.   end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement