Advertisement
Guest User

reactor

a guest
Jan 19th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.78 KB | None | 0 0
  1. while true do
  2.   local r = peripheral.wrap("BigReactors-Reactor_0")
  3.   local mon = peripheral.wrap("monitor_0")
  4.   local reactorOnline = r.getActive()
  5.   local energyProduction = r.getEnergyProducedLastTick()
  6.  
  7.   mon.clear()
  8.  
  9.   --Reactor Online
  10.   mon.setCursorPos(1,1)
  11.   mon.setTextColor(colors.white)
  12.   mon.write("Active: ")
  13.   if reactorOnline then
  14.     mon.setTextColor(colors.lime)
  15.   else
  16.     mon.setTextColor(colors.red)
  17.   end      
  18.   mon.write(r.getActive())
  19.  
  20.   --RF/t Production
  21.   mon.setCursorPosition(1,2)
  22.   mon.setTextColor(colors.white)
  23.   mon.write("RF/t: ")
  24.   if energyProduction <= 0 then
  25.     mon.setTextColor(colors.red)
  26.   else  
  27.     mon.setTextColor(colors.lime)
  28.   end  
  29.   mon.write(math.floor(energyProduction).." RF/t")    
  30.  
  31. sleep(2)
  32.  
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement