Can someone post a script to make Turtles attack, it would be much appreciated. I watched one of Direwolf20's recent episodes where he used Turtles to help him farm XP, but after following his direction I can not get the Turtles to attack.
His entire script is right there at 13:31.Can someone post a script to make Turtles attack, it would be much appreciated. I watched one of Direwolf20's recent episodes where he used Turtles to help him farm XP, but after following his direction I can not get the Turtles to attack.
while true do
turtle.attack()
sleep(1)
end
hey that program works but only on one turtle the other ones come up with bios somthing please help
How do I stop them from picking up the Blaze Rods?
chest yes, relay no there are issues with relays atm try not to use them at all or limited use only.if you put a chest or another inventory like a relay or something below the turtles, you can use turtle.dropDown() so they drop what they have in the inventory.
in my script i have turtle.drop(64)if you're using some other system to pick up items (transposers and water flow, for example) you can just add to your attack script to make the turtles spit them out:
while true do
turtle.attack()
turtle.drop()
sleep(0.3)
end