Advertisement
cowslaw

XP Farm

Mar 17th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. -- Melee Turtle XP Farm - by cowslaw
  2.  
  3. -- Functions
  4. function attack()
  5.  turtle.attack()
  6. end
  7.  
  8. function emptyInventory()
  9.  if turtle.getItemCount(16) > 0 then
  10.   for i = 1, 16 do
  11.    turtle.select(i)
  12.    turtle.dropDown()
  13.   end
  14.  end
  15. end
  16.  
  17.  
  18. -- Main Loop
  19.  while true do
  20.   attack()
  21.   emptyInventory()
  22.  end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement