Advertisement
SmugTomato

Untitled

Mar 30th, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 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. local prevPercentage = percentage
  40.  
  41. while true do
  42. local capacity = battery.capacity()
  43. local stored = battery.stored()
  44. local percentage = calcPercentage(capacity, stored)
  45.  
  46. print("Energy stored: " .. stored .. "/" .. capacity .. "(" .. string.format("%.2f", percentage) .. "%)")
  47.  
  48. if percentage < 50 and not reactor.active() then
  49. print("Activating reactor...")
  50. print()
  51. reactor.setActive(true)
  52. end
  53.  
  54. if percentage > 80 and reactor.active() then
  55. print("Deactivating reactor...")
  56. print()
  57. reactor.setActive(false)
  58. end
  59.  
  60. prevPercentage = percentage
  61.  
  62. sleep(0.5)
  63. end
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement