Advertisement
SmugTomato

Untitled

Mar 30th, 2025
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. local reactor = peripheral.find("BiggerReactors_Reactor")
  2.  
  3. if not reactor then
  4. print("Reactor not found!")
  5. return
  6. end
  7.  
  8. local apiVersion = reactor.apiVersion()
  9. local ambientTemp = reactor.ambientTemperature()
  10. local casingTemp = reactor.casingTemperature()
  11. local battery = reactor.battery()
  12. local capacity = battery.capacity()
  13. local stored = battery.stored()
  14. local percentage = calcPercentage(capacity, stored)
  15.  
  16. print("Booting up ReactorControl...")
  17. sleep(0.1)
  18.  
  19. print("API version " .. apiVersion)
  20. sleep(0.1)
  21.  
  22. print("Ambient temperature " .. ambientTemp)
  23. sleep(0.1)
  24.  
  25. print("Casing temperature " .. casingTemp)
  26. sleep(0.1)
  27.  
  28. print("Energy stored: " .. stored .. "/" .. capacity .. "(" .. string.format("%.2f", percentage) .. "%)")
  29. sleep(0.1)
  30.  
  31. print()
  32. print("----------------")
  33. print()
  34.  
  35. function calcPercentage(capacity, stored)
  36. return (stored / capacity) * 100
  37. end
  38.  
  39. while true do
  40. local capacity = battery.capacity()
  41. local stored = battery.stored()
  42. local percentage = calcPercentage(capacity, stored)
  43.  
  44. print("Energy stored: " .. stored .. "/" .. capacity .. "(" .. string.format("%.2f", percentage) .. "%)")
  45.  
  46. if percentage < 50 then
  47. print("Activating reactor...")
  48. print()
  49. reactor.setActive(true)
  50. end
  51.  
  52. if percentage > 80 then
  53. print("Deactivating reactor...")
  54. print()
  55. reactor.setActive(false)
  56. end
  57.  
  58. sleep(0.5)
  59. end
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement