Posted 05 September 2014 - 10:31 PM
Is there a way for a turtle to get a message over rednet and perform the specified task?
Something like this
I know this works,
Something like this
while true do
Id, msg, protocol = rednet.receive()
msg
end
where the message would be "turtle.forward()"I know this works,
while true do
Id, msg, protocol = rednet.receive()
if msg == "turtle.forward()" then
turtle.forward()
end
end
but its very time consuming to do this for every possible actionEdited on 05 September 2014 - 08:32 PM