Advertisement
Guest User

rc

a guest
Jun 29th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. local reactor = peripheral.wrap("back")
  2. if reactor.getConnected then
  3.   print("Reaktor verbunden")
  4.   end
  5. while true do
  6.   hotfluid = reactor.getHotFluidAmount()
  7.  
  8.   if hotfluid < 9100 then
  9.     reactor.setActive(true)
  10.   else
  11.     reactor.setActive(false)
  12.   end
  13.  
  14.   sleep(0.1)
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement