Turtle question

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
 

thesonofdarwin

New Member
Jul 29, 2019
21
0
0
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()​
 

Democretes

New Member
Jul 29, 2019
1,134
0
1
For any turtle with a Misc Peripheral on it, you will have to use the peripheral.wrap command before you use it.