74 posts
Location
~
Posted 15 October 2015 - 06:11 PM
Why don't add to turtles turtle.shot or turtle.throw for throwable items like potions, snowballs, eggs and arrows?
957 posts
Location
Web Development
Posted 15 October 2015 - 11:36 PM
Does turtle.place() work for any of those?
( Guessing it won't with arrows / bow )
1426 posts
Location
Does anyone put something serious here?
Posted 16 October 2015 - 07:35 AM
Peripherals++ has a
flinging (dispenser) turtle upgrade, though it would be nice to have it in Vanilla CC.
818 posts
Location
Wherever you want me to be
Posted 17 October 2015 - 01:27 AM
doesn't computercraft have turtle.use() ?
i think i saw i post with it, but i'm not sure.
3057 posts
Location
United States of America
Posted 17 October 2015 - 03:21 AM
doesn't computercraft have turtle.use() ?
i think i saw i post with it, but i'm not sure.
No. Closest thing would be turtle.place (uses buckets properly AFAIK).
477 posts
Location
Germany
Posted 29 October 2015 - 04:27 PM
If you really need it you could use this workaround:
Let the turtle place a dispenser
turtle.drop() it in
then rs.setOutput("front",true)
that should work.