Posted 16 May 2014 - 08:29 PM
Hello, I just started working with computercraft and I have run in to the fist snag that I have been unable to figure out. The reactor I am using is part of Big Reactors I am hoping to get a little help.
The below code when ran will return the following. The hex number appears to be random because even with the reactor off there is a huge change in that number.
The below code when ran will return the following. The hex number appears to be random because even with the reactor off there is a huge change in that number.
The Reactor Temp is:
Function: <hex number>
Function reactor()
reactor - peripheral.wrap("back")
reactor.setActive (true)
print ("The Reactor Temp Is: ")
print (reactor.getCasingTemperature)
sleep(5)
reactor.setActive (false)
end
reactor()