Advertisement
Guest User

startup.lua

a guest
Mar 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. while true do
  2.     turtle.select(1)
  3.     turtle.place()
  4.     turtle.craft()
  5.     turtle.select(3)
  6.     local r = turtle.dropUp()
  7.     if r then
  8.         sleep(0.1)
  9.     else
  10.         sleep(10)
  11.     end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement