This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
AlexDevs's profile picture

Throwable items for turtle

Started by AlexDevs, 15 October 2015 - 04:11 PM
AlexDevs #1
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?
HPWebcamAble #2
Posted 15 October 2015 - 11:36 PM
Does turtle.place() work for any of those?
( Guessing it won't with arrows / bow )
SquidDev #3
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.
Waitdev_ #4
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.
KingofGamesYami #5
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).
Luca_S #6
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.