Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ****************************************************************************
- -- ** **
- -- ** FIGHT **
- -- ** **
- -- ** Attacks in front **
- -- ** Collects loot **
- -- ** Drops loot that matches Slot 1 into the chest on the left **
- -- ** Drops loot that does not match Slot 1 into the chest on the right **
- -- ** **
- -- ****************************************************************************
- while true do
- if turtle.getItemCount(16) > 0 then
- turtle.turnLeft()
- for n=2,16 do
- turtle.select(n)
- if turtle.compareTo(1) then
- turtle.drop()
- end
- end
- turtle.select(1)
- turtle.drop(turtle.getItemCount(1)-1)
- turtle.turnLeft()
- turtle.turnLeft()
- for n=2,16 do
- turtle.select(n)
- if not turtle.compareTo(1) then
- turtle.drop()
- end
- end
- turtle.select(1)
- turtle.turnLeft()
- end
- turtle.attack()
- sleep(.1)
- turtle.suck()
- sleep(.1)
- end
Add Comment
Please, Sign In to add comment