this is what the sending computer has:
wood = {12, 12, }
print("what you want?")
local item = read()
print("how many?")
local amount = read()
if item == "wood" then
table.insert (wood, amount)
local msg = textutils.serialize(wood)
rednet.open("right")
rednet.send (2, msg)
end
and this is what the receiving computer has:
local id, msg = rednet.receive() local wood = textutils.unserialize(msg) print (wood[1]) print (wood[2]) print (wood[3])
I'm not entirely sure what im doing really all of what I have done so far has been accomplished by looking at the manual or the forums, but as they say the best way to learn is from your mistakes.
thanks plonkerking












