Advertisement
Guest User

lokaler_Modus

a guest
Dec 31st, 2015
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. while true do
  2.  
  3. local reactor1 = peripheral.wrap("BigReactors-Reactor_1")
  4. local mon = peripheral.wrap("right")
  5.  
  6. mon.setBackgroundColor(colors.black)
  7. mon.clear()
  8.  
  9. mon.setCursorPos(1, 1)
  10. mon.setTextColor(colors.white)
  11. mon.write("Reaktor aktiv: ")
  12. mon.setTextColor(colors.lime)
  13. mon.write(reactor1.getActive())
  14.  
  15. mon.setCursorPos(1, 2)
  16.  
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement