This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
TipTricky's profile picture

Nuclear Information Reader

Started by TipTricky, 22 January 2013 - 05:15 PM
TipTricky #1
Posted 22 January 2013 - 06:15 PM
I play FTB and want to setup the reader for my nuclear reactor so i can see on the info i need to but i dont know how to do it theres no tutorials on the Nuclear Information Reader from misc peripherals that i can find. Can any one help me out?
theoriginalbit #2
Posted 22 January 2013 - 06:26 PM
I play FTB and want to setup the reader for my nuclear reactor so i can see on the info i need to but i dont know how to do it theres no tutorials on the Nuclear Information Reader from misc peripherals that i can find. Can any one help me out?
The Misc-Peripherals thread is probably a better place to ask…
TipTricky #3
Posted 22 January 2013 - 06:27 PM
Already did. Thought maby some one here might have a quick tip
3ydney #4
Posted 22 January 2013 - 06:49 PM
Use ccSensors on a device (Like MFSU or a reactor)
You will get a Information card and then put that in a reader.


Source: http://www.youtube.com/watch?v=c8usBI6fqLM
theoriginalbit #5
Posted 22 January 2013 - 06:56 PM
Use ccSensors on a device (Like MFSU or a reactor)
You will get a Information card and then put that in a reader.
I play FTB
need more be said?
3ydney #6
Posted 22 January 2013 - 09:28 PM
What?

Ill write a program for this after tea… (30mins)

What ccSensor are you going to be using?
theoriginalbit #7
Posted 22 January 2013 - 09:52 PM
What?
Ill write a program for this after tea… (30mins)
What ccSensor are you going to be using?
FTB doesn't have ccSensors… that was the point I was trying to get at… nothing except Tekkit has ccSensors…
NeverCast #8
Posted 28 January 2013 - 01:26 PM
for i,_ in pairs(infos) do print(i) end

Still empty?
Orwell #9
Posted 28 January 2013 - 01:32 PM
To elaborate, table.getn only returns the number of keys that are numerical and consecutive from 1 upwards. (Like an array would behave)
NeverCast #10
Posted 28 January 2013 - 01:43 PM

function table.count(self) do
  local n = nil
  local i = 0
  while next(self,n) do
    n = next(self, n)
    i = i + 1
  end
  return i
end

local t = { "this"="example" }
print(table.count(t))