Advertisement
gravityio

turtleutils.lua

Jan 15th, 2021
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. local turtleutils = {}
  2.  
  3. function turtleutils.Refuel()
  4.     for i = 1, 16 do
  5.         turtle.select(i)
  6.         turtle.refuel(64)
  7.     end
  8. end
  9.  
  10. return turtleutils
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement