Instead of slapping the zombies myself, I decided to put a Melee Turtle to make my life easier.
However, when I'm away from the turtle, it doesn't work some of the time. (No, the chunk IS loaded)
How can I fix this?
Here's the code for the turtle:
However, when I'm away from the turtle, it doesn't work some of the time. (No, the chunk IS loaded)
How can I fix this?
Here's the code for the turtle:
Code:
while true do
turtle.attack()
turtle.suck()
itemcount = turtle.getItemCount(16)
if itemcount ~= 0 then
for i=1,16 do
turtle.select(i)
turtle.dropDown()
end
turtle.select(1)
end
end