Advertisement
omr__

Loco

Apr 14th, 2020 (edited)
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. K_VERSION = 0.001
  2.  
  3. function getItemDetail()
  4.     turtle.getItemDetail(1)
  5. end
  6.  
  7. function getPurityLevel()
  8. end
  9.  
  10. function grindItem()
  11. end
  12.  
  13. function takeItemFromChest()
  14. end
  15.  
  16. function putItemToChest()
  17. end
  18.  
  19. function takeItemFromWorld()
  20.     turtle.suck()
  21. end
  22.  
  23. function dropItemToWorld()
  24. end
  25.  
  26. function run()
  27.     takeItemFromWorld()
  28.     getItemDetail()
  29. end
  30.  
  31. run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement