Advertisement
Ubidibity

Shadowpulse.lua

May 24th, 2025 (edited)
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- stack of iron blocks in slot one and it should wait until the Shadowpulse Goo converts it, pick it up and repeat
  2. target="justdirethings:raw_ferricore_ore"
  3.  
  4. local function checkblock()
  5.   local has_block, data = turtle.inspect()
  6.   if has_block then
  7.     if data.name == target then
  8.       turtle.dig()
  9.       turtle.place()
  10.     else
  11.       print("Still=",data.name)
  12.     end
  13.   end
  14. end
  15.  
  16. turtle.place()
  17.  
  18. for x=1,63 do
  19.   checkblock()
  20.   sleep(2)
  21. end
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement