diff --git a/biofuel-manager.lua b/biofuel-manager.lua new file mode 100644 index 0000000..1f0a936 --- /dev/null +++ b/biofuel-manager.lua @@ -0,0 +1,19 @@ +-- program to manage a biofuel factory with create and some addons + tweaks +-- NOTE: this design does not handle stocking cinder flour or sugar + +local STORAGE = "" +local OIL_TANK = "" +local FUEL_TANK = "" + +local MAIN_SEED_REQUEST = "minecraft:melon_seeds" +local MAIN_PLANT_REQUEST = "minecraft:bamboo" + +local SPEEDOMETER = "" +local MAIN_REQUESTER = "" +local SUBNET_TICKER = "" + +local SLEEP_T = 10 + +local OIL_PKG = "Oil" +local BIOMASS_PKG = "Biomass" +local BIOFUEL_PKG = "Biofuel"