Turtle question

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Svalkur

New Member
Jul 29, 2019
14
0
1
Just wondering, i created a feeder turtle however there is no default program for is
i tried to go into lua and do a turtle.feed() and even just feed() with no success

can anyone help me out with this? i want the turtle to just keep attempting to feed until
it runs out of wheat and im clueless when it comes to lua

any help would be appreciated
 
It uses a peripheral, so you need to send the command to the peripheral. Do something like this in whatever program you write.​
m = peripheral.wrap("right")​
m.feed()​
 
For any turtle with a Misc Peripheral on it, you will have to use the peripheral.wrap command before you use it.