Advertisement
Guest User

start.lua

a guest
Sep 19th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. while true do
  2. if turtle.suckUp() then
  3.  for i=1,16 do
  4.  turtle.select(i)
  5.   if turtle.getItemDetail() ~=nil then
  6.    if turtle.getItemDetail().name =="ic2:nuclear" and
  7.    turtle.getItemDetail().damage == "2" then
  8.     turtle.dropDown()  
  9.     end
  10.   end
  11.  end
  12.  turtle.craft()
  13.  turtle.dropDown()
  14.  
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement