OK,
The turtles are primed and use this to receive the command:
rednet.open("right")
while true do
senderID, message, distance = rednet.receive()
print(message)
shell.run(message)
end
which then executes this:
function deploy()
turtle.select(1)
turtle.place()
end
function clearInv()...