Advertisement
Guest User

coupe.lua

a guest
Feb 17th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. slotSapling = 1
  2. slotCharbon = 2
  3. slotBois = 3
  4. slotCoffre = 5
  5. slotWaipoint = 4
  6.  
  7. function isBlockType(type)
  8.  turtle.select(type)
  9.  return turtle.compare()
  10. end
  11.  
  12. function isBlockBelow(type)
  13.  turtle.select(type)
  14.  return turtle.compareDown()
  15. end
  16.  
  17. while true do
  18.  turtle.forward()
  19.  if not isBlockBelow(slotWaipoint) then
  20.   turtle.back()
  21.   break
  22.  end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement