Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Attacca in continuazione e mette il bottino nello scrigno sottostante
- raffica = 20
- unloaded = 0
- function scarica()
- if turtle.getItemCount(1) > 0 then
- for n=1,16 do
- unloaded = unloaded + turtle.getItemCount(n)
- turtle.select(n)
- turtle.dropDown()
- end
- collected = 0
- turtle.select(1)
- print ("Totale drop: " .. unloaded)
- end
- end
- while true do
- for i= 1, raffica do
- turtle.attack(1)
- sleep(0.1)
- end
- turtle.select(1)
- scarica()
- end
Advertisement
Add Comment
Please, Sign In to add comment