Mralko99

Xp farm

Jun 8th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Attacca in continuazione e mette il bottino nello scrigno sottostante
  2. raffica = 20
  3. unloaded = 0
  4.  
  5.  
  6. function scarica()
  7. if turtle.getItemCount(1) > 0 then
  8.     for n=1,16 do
  9.         unloaded = unloaded + turtle.getItemCount(n)
  10.         turtle.select(n)
  11.         turtle.dropDown()
  12.     end
  13.     collected = 0
  14.     turtle.select(1)
  15.   print ("Totale drop: " .. unloaded)
  16. end
  17. end
  18.  
  19. while true do
  20.   for i= 1, raffica do
  21.         turtle.attack(1)
  22.         sleep(0.1)
  23.   end
  24.   turtle.select(1)
  25.         scarica()
  26. end
Advertisement
Add Comment
Please, Sign In to add comment