Advertisement
SmugTomato

Untitled

Mar 30th, 2025
13
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. while true do
  36. local capacity = battery.capacity()
  37. local stored = battery.stored()
  38. local percentage = calcPercentage(capacity, stored)
  39.  
  40. print("Energy stored: " .. stored .. "/" .. capacity .. "(" .. string.format("%.2f", percentage) .. "%)")
  41.  
  42. if percentage < 50 then
  43. print("Activating reactor...")
  44. print()
  45. reactor.setActive(true)
  46. end
  47.  
  48. if percentage > 80 then
  49. print("Deactivating reactor...")
  50. print()
  51. reactor.setActive(false)
  52. end
  53.  
  54. sleep(0.5)
  55. end
  56.  
  57. function calcPercentage(capacity, stored)
  58. return (stored / capacity) * 100
  59. end
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement