I've been trying to make a fully automated skeleton XP farm with melee turtles, but they don't kill the skeletons. The skeletons drop into a 1x1 block pit with a melee turtle in the wall. Even using this basic program, the turtle (most of the time) will only attack each skeleton once and won't deliver the final blow:
I'm using the FTB Ultimate pack. I'd really like to get this fixed so I can start my XP farm.
while true do
os.sleep(1)
turtle.attack()
end
os.sleep(1)
turtle.attack()
end
I'm using the FTB Ultimate pack. I'd really like to get this fixed so I can start my XP farm.