Okay, I don't know that Fun is necessarily the right word. Unless you're using the Dwarf Fortress definition.
In short, I'm looking to build a computer that can read certain information about pieces of my base from my house, so I don't have to wander around and find them. I've figured out how to get Tables into a readable format, but I can't figure out how to pull a specific value for sending to the display computer. The program I'm using now is this:
I know how to send via modem, but I can't figure out how to extract the data from the table so I can display it. Can anyone point me in the right direction? I've searched the internet and the computercraft forums, to no avail. Thanks.
In short, I'm looking to build a computer that can read certain information about pieces of my base from my house, so I don't have to wander around and find them. I've figured out how to get Tables into a readable format, but I can't figure out how to pull a specific value for sending to the display computer. The program I'm using now is this:
p = peripheral.wrap("bottom")
for i = 1,1 do
print (textutils.serialize(p.getTankInfo("bottom")))
end
for i = 1,1 do
print (textutils.serialize(p.getTankInfo("bottom")))
end
I know how to send via modem, but I can't figure out how to extract the data from the table so I can display it. Can anyone point me in the right direction? I've searched the internet and the computercraft forums, to no avail. Thanks.