David_Turtle

Turtle "AutoDropper"

Oct 5th, 2021
1,100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. while true do
  2.  
  3.     term.clear()
  4.     term.setCursorPos(1,1)
  5.     print("Turtle AutoDropper v.1.0")
  6.     print("")
  7.     print("Die Turtle droppt alle Items in ihrem Inventar nach unten")
  8.  
  9.     for j=1, 16 do
  10.         turtle.select(j)
  11.         turtle.dropDown()
  12.     end
  13.  
  14. end
Advertisement
Add Comment
Please, Sign In to add comment