Advertisement
SmugTomato

Untitled

Mar 30th, 2025
10
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. function calcPercentage(capacity, stored)
  9. return (stored / capacity) * 100
  10. end
  11.  
  12. local apiVersion = reactor.apiVersion()
  13. local ambientTemp = reactor.ambientTemperature()
  14. local casingTemp = reactor.casingTemperature()
  15. local battery = reactor.battery()
  16. local capacity = battery.capacity()
  17. local stored = battery.stored()
  18. local percentage = calcPercentage(capacity, stored)
  19.  
  20. print("Booting up ReactorControl...")
  21. sleep(0.1)
  22.  
  23. print("API version " .. apiVersion)
  24. sleep(0.1)
  25.  
  26. print("Ambient temperature " .. ambientTemp)
  27. sleep(0.1)
  28.  
  29. print("Casing temperature " .. casingTemp)
  30. sleep(0.1)
  31.  
  32. print("Energy stored: " .. stored .. "/" .. capacity .. "(" .. string.format("%.2f", percentage) .. "%)")
  33. sleep(0.1)
  34.  
  35. print()
  36. print("----------------")
  37. print()
  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