Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function drop()
- for i = 1, 5 do
- turtle.select(i)
- turtle.dropDown()
- end
- turtle.select(1)
- end
- kills = 0
- while true do
- if turtle.attack() == false then
- sleep(0.5)
- else
- drop()
- kills = kills + 1
- term.clear()
- term.setCursorPos(1,1)
- term.write("Kills: "..kills)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment