TheDarkVoid, on 08 January 2013 - 01:24 PM, said:
Awesome addon but i'm having a problem with the gate reader, when place it next to a Redstone Energy Cell and i run get() i get a table that just contains one value: 43ac15aa. This value changes, seems random.
I'm on the latest version of the Direwolf20 FTB pack(Dir
here is a screen shot:
https://dl.dropbox.c...07_19.18.39.png &
https://dl.dropbox.c...07_19.18.50.png
Hope you can help, or anyone really

What you're seeing is the unique ID of the table itself. You need the read the table out in order to view it.
Try this instead:
t = peripheral.call("back", "get")
for k,v in pairs(t) do print(k.." ",v) end
This page might help you with tables:
http://lua-users.org.../TablesTutorial
Holofire, on 08 January 2013 - 11:56 AM, said:
I was wondering if it would be possible to make a stand-alone block for the REther Upgrade so normal computers would be able to interact with it.
You can already place a wireless receiver or transmitter next to a computer and interact with it. Of course, you will need both modules if you wish to both receive and transmit.