over here I have my code for receiver (turtle),
rednet.open("left")
local id, message = rednet.receive("remote")
print(textutils.serialise(message))
and over here I've got the pocket computer I'm sending from and it's code,
local coords = {
x = 1,
y = 5,
z = 2,
}
rednet.open("back")
rednet.send(9, coords, "remote")
These are test scripts in order to better understand how to deal with sending these variables over rednet so that they can be used as args for a shell.run("goto", ...) function.
The bigger picture reason for this endeavor is to create a function that receives the coords of the player(he/she's pocket computer) and runs goto for the turtle to return to the player.
Anyone's help is of course always appreciated. Thanks guys!












