This is a read-only snapshot of the ComputerCraft forums,
taken in April 2020.
Nuclear Information Reader
Started by TipTricky, 22 January 2013 - 05:15 PMPosted 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?
Posted 22 January 2013 - 06:26 PM
The Misc-Peripherals thread is probably a better place to ask…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?
Posted 22 January 2013 - 06:27 PM
Already did. Thought maby some one here might have a quick tip
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
You will get a Information card and then put that in a reader.
Source: http://www.youtube.com/watch?v=c8usBI6fqLM
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.
need more be said?I play FTB
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?
Ill write a program for this after tea… (30mins)
What ccSensor are you going to be using?
Posted 22 January 2013 - 09:52 PM
FTB doesn't have ccSensors… that was the point I was trying to get at… nothing except Tekkit has ccSensors…What?
Ill write a program for this after tea… (30mins)
What ccSensor are you going to be using?
Posted 28 January 2013 - 01:26 PM
for i,_ in pairs(infos) do print(i) end
Still empty?
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)
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))