http://computercraft.info/wiki/Turtle.dropin my script i have turtle.drop(64)
but just that line works either way. nice short and sweet script
If you don't have a number, it'll drop the full stack. You're doing the exact same thing.
http://computercraft.info/wiki/Turtle.dropin my script i have turtle.drop(64)
but just that line works either way. nice short and sweet script
while true do
turtle.attack()
sleep(1)
end
I like your picture :3☺in my script i have turtle.drop(64)
but just that line works either way. nice short and sweet script
Positive it's a melee turtle. And I am sure I am in range. I walked all over and around it
Are you sure you spelt "startup" correctly? Type ls to list the contents of the directory. That's LS in lower case. I've accidentally created stratup before.3. at prompt typed "edit startup"
while true do
turtle.attack()
sleep(.5)
end
Thanks, so far as I can see it works like a champ. And it's simple enough that I see why it works.This will check all 16 slots for items and drop them down if needed.
Code:while true do turtle.attack() for i=1,16 do if turtle.getItemCount(i) > 0 then turtle.select(i) turtle.dropDown() end end sleep(1) end