Advertisement
CaptainSpaceCat

Powah Reactor - Chunkloaded

Nov 9th, 2021
1,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. local function safePlace(n)
  2.     for i = 1, n do
  3.         turtle.place()
  4.         sleep(1)
  5.     end
  6. end
  7.  
  8. while true do
  9.     turtle.dig()
  10.     safePlace(10000)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement