Advertisement
Yellbana

mob soul recharge

Jul 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. activator = peripheral.wrap("front")
  2.  
  3. while true do
  4.   activatorItem = activator.getStackInSlot(1)
  5.   if activatorItem then
  6.     if activatorItem["energy_te"]["energyStored"]/10000 < 10 then
  7.       activator.pushItem("north", 1, 1)
  8.       turtle.turnLeft()
  9.       turtle.drop()
  10.       sleep(3)
  11.       turtle.suck()
  12.       turtle.turnRight()
  13.       turtle.drop()
  14.     end
  15.   end
  16.   sleep(5)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement