This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from ThorsCrafter/beta
Release 2.5
- Loading branch information
Showing
16 changed files
with
568 additions
and
329 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,45 @@ | ||
# Reactor-and-Turbine-control-program | ||
This is my Reactor- and Turbine control program for ComputerCraft and BigReactors | ||
# Reactor and Turbine control program | ||
***Description:*** | ||
|
||
This is my Reactor- and Turbine control program for ComputerCraft and BigReactors. | ||
The following list shows the features of the program: | ||
- Control up to 32 Turbines (per Reactor) | ||
- Supports multiple languages (currently English and German) | ||
- Automatic and manual Control of Reactor and attached Turbines | ||
- Energy-based automatic Control | ||
- Switches Reactor and Turbines on/off if energy level is low/high | ||
- Supports multiple Energy Storage typesm like Capacitorbanks (EnderIO), Energy Core (Draconic Evolution), etc. | ||
- Large option menu | ||
- Change Background and Text Color | ||
- Set energy level for activating/deactivating the reactor | ||
- Set Reactor Steam Output Level | ||
|
||
## How To Install | ||
- Set up a Computer, connect all parts (Reactor, Energy Storage, Turbines) with ***Wired Modems*** | ||
- ***Activate*** all modems | ||
- Type in the following into the computer: | ||
|
||
``` | ||
pastebin get HMtbgkwt git | ||
git | ||
``` | ||
- Then follow the install instructions | ||
## Have a look at my Update Videos on YouTube | ||
- Current version (2.4): | ||
- https://www.youtube.com/watch?v=UnPru3xhrjo (English) | ||
- https://www.youtube.com/watch?v=XNlsU0tSHOc&t=1s (German) | ||
## Do you want to help me developing the program? | ||
- Use my beta versions! | ||
- Report bugs and send me suggestions for new features | ||
## | ||
### *Have fun! Thanks for using my program!* | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.5-beta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,15 @@ | ||
|
||
version | ||
2.4 | ||
rodLevel | ||
0 | ||
backgroundColor | ||
128 | ||
textColor | ||
1 | ||
reactorOffAt | ||
90 | ||
reactorOnAt | ||
50 | ||
mainMenu | ||
true | ||
autoUpdate | ||
false | ||
lang | ||
de | ||
mode | ||
auto | ||
program | ||
turbine | ||
turbineTargetSpeed | ||
1820 | ||
turbineTargetSteam | ||
2000 | ||
{ | ||
mainMenu = true, | ||
rodLevel = 0, | ||
targetSpeed = 2000, | ||
overallMode = "auto", | ||
reactorOffAt = 80, | ||
backgroundColor = 128, | ||
reactorOnAt = 50, | ||
targetSteam = 2000, | ||
turbineTargetSpeed = 1820, | ||
version = "2.5-beta04", | ||
textColor = 1, | ||
program = "turbine", | ||
lang = "de", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.