So, what I want to happen is the turtles to kill monsters infront of it and drop the items either infront of them, or behind of them.
It would look like this
DTEETD
DTEETD
where
D = drop zone
T = turtle
E = empty
Currently I have this from the wiki that attacks when given a redstone current but doesnt get rid of the items.
while true do
while redstone.getInput("back") do
turtle.attack()
sleep(.1)
end
sleep(.5)
end
It would look like this
DTEETD
DTEETD
where
D = drop zone
T = turtle
E = empty
Currently I have this from the wiki that attacks when given a redstone current but doesnt get rid of the items.
while true do
while redstone.getInput("back") do
turtle.attack()
sleep(.1)
end
sleep(.5)
end