rungholt

tInspect

Mar 1st, 2021 (edited)
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. while true do
  2.   local success, data = turtle.inspectDown()
  3.     if success then
  4.       print("Block name: ", data.name)
  5.       print("Block State: ", data.state)
  6.       print("Block Age: ", data.state.age)    
  7.   end
  8.   sleep(60)
  9. end
Add Comment
Please, Sign In to add comment