Advertisement
Guest User

startup

a guest
Oct 24th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 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.     sleep(1)
  7.   else
  8.     print("No item Detected.  Waiting...")
  9.     sleep(10)
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement