Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local sturbine = require("steamTurbineProxies")
- local gturbine = require("gasTurbineProxies")
- local hexchange = require("heatExchangerProxies")
- local steelTank = require("tankProxies")
- local component = require("component")
- local tank01 = component.proxy(steelTank.tank01)
- local tank02 = component.proxy(steelTank.tank02)
- local heatEx01 = component.proxy(hexchange.heatEx01)
- local heatEx02 = component.proxy(hexchange.heatEx02)
- local gasTurbine01 = component.proxy(gturbine.gasTurbine01)
- local gasTurbine02 = component.proxy(gturbine.gasTurbine02)
- local steamTurbine01 = component.proxy(sturbine.steamTurbine01)
- local function heatExchangerEnableComputerControl(bool)
- heatEx01.enableComputerControl(bool)
- heatEx02.enableComputerControl(bool)
- end
- local function gasTurbineEnableComputerControl(bool)
- gasTurbine01.enableComputerControl(bool)
- gasTurbine02.enableComputerControl(bool)
- end
- local function steamTurbineEnableComputerControl(bool)
- steamTurbine01.enableComputerControl(bool)
- end
- local function masterEnableComputerControl()
- heatExchangerEnableComputerControl(true)
- gasTurbineEnableComputerControl(true)
- steamTurbineEnableComputerControl(true)
- end
- local function fuelCalculator()
- dieselBurnRate = 11.4
- gasolineBurnRate = 80
- bioDieselBurnRate = 16
- keroseneBurnRate = 15
- end
- masterEnableComputerControl()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement