README.md and freezer header comment updated.
README.md and freezer.lua documentation changes. Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
This commit is contained in:
parent
bbe683365e
commit
8a05d661a2
42
README.md
42
README.md
@ -1,13 +1,15 @@
|
|||||||
Minetest modpack, tested with version 0.4.17.1.
|
# MicuPack v0.4
|
||||||
|
|
||||||
|
**Minetest modpack by (real)micu, tested with Minetest 0.4.17.1 and Minetest Game**
|
||||||
|
|
||||||
This modpack contains:
|
This modpack contains:
|
||||||
|
|
||||||
* Modern Tables
|
* **Modern Tables** (moderntables)
|
||||||
|
|
||||||
Simple wooden tables. To be expanded.
|
Simple wooden tables. *To be expanded.*
|
||||||
|
|
||||||
|
|
||||||
* Miner Tools
|
* **Miner Tools** (minertools)
|
||||||
|
|
||||||
Electronic gadgets for professional miners. Inspired by mod called 'Mineral Detector'.
|
Electronic gadgets for professional miners. Inspired by mod called 'Mineral Detector'.
|
||||||
|
|
||||||
@ -23,27 +25,28 @@ This modpack contains:
|
|||||||
- all-in-one versions of above devices, each one with improved characteristics
|
- all-in-one versions of above devices, each one with improved characteristics
|
||||||
|
|
||||||
|
|
||||||
* SaferLua Programming Tools
|
* **SaferLua Programming Tools** (slprogtools)
|
||||||
|
|
||||||
Devices for interacting with SaferLua Controller from TechPack mod:
|
Devices for interacting with SaferLua Controller from TechPack mod:
|
||||||
|
|
||||||
- Memory Copier - portable dongle to transfer code between SL Controllers in much simpler
|
- Memory Copier - portable dongle to transfer code between SL Controllers in much simpler
|
||||||
and faster fashion than copying it with text books
|
and faster way than copying it with text books
|
||||||
- Memory Programmer - improved Memory Copier, with read/write protection to prevent
|
- Memory Programmer - improved Memory Copier, with read/write protection to prevent
|
||||||
accidental memory loss and code injection functionality (works like original Programmer
|
accidental memory loss and code injection functionality (works like original Programmer
|
||||||
but for SL Controllers); the latter allows to replace special marker in init() section
|
but for SL Controllers); it allows to replace special marker in init() section
|
||||||
code with array containing collected Tubelib numbers, making redeployments of SL
|
code with array containing collected Tubelib numbers, making redeployments of SL
|
||||||
Controllers (for example for mobile mining with Quarries and Pushers) much easier
|
Controllers much easier (for example for mobile mining with Quarries and Pushers)
|
||||||
|
|
||||||
Note: due to formspec implementation, only inactive tabs can be populated - before code
|
*Note: due to node's formspec implementation, only inactive tabs can be populated - before
|
||||||
upload/rewrite please change active tab on SaferLua Controller to 'outp' or 'help'.
|
code upload/rewrite please change active tab on SaferLua Controller to 'outp' or 'help'.*
|
||||||
|
|
||||||
|
|
||||||
* Furnace Monitor
|
* **Furnace Monitor** (furnacemonitor)
|
||||||
|
|
||||||
This simple device allows to monitor Minetest Game standard furnace with Tubelib/Smartline
|
This simple device allows to monitor Minetest Game standard furnace with Tubelib/Smartline
|
||||||
devices that are capable of reading Tubelib node state (like SaferLua Controllers etc).
|
devices that are capable of reading Tubelib node state (like SaferLua Controllers etc).
|
||||||
It receives 4-digit number and can be referred like any other compatible read-only node.
|
It gets standard 4-digit Tubelib ID number and can be referred like any other compatible
|
||||||
|
read-only node.
|
||||||
Monitor checks attached node only when status is requested so it does not consume CPU
|
Monitor checks attached node only when status is requested so it does not consume CPU
|
||||||
resources when idle (no timers).
|
resources when idle (no timers).
|
||||||
|
|
||||||
@ -60,18 +63,19 @@ This modpack contains:
|
|||||||
Punch node to see current status.
|
Punch node to see current status.
|
||||||
|
|
||||||
|
|
||||||
* Biogas Machines
|
* **Biogas Machines** (biogasmachines)
|
||||||
|
|
||||||
Expands Tubelib (and TechPack) with various machines that use Biogas either as a product
|
Expands Tubelib (and TechPack) with various machines that use Biogas either as a product
|
||||||
or a power source. Work in progress!
|
or a power source. *Work in progress!*
|
||||||
|
|
||||||
Available:
|
Available:
|
||||||
|
|
||||||
- Water Freezer - metal box to freeze water to ice using Biogas as coolant; water can
|
- Water Freezer - freezing machine that converts water to ice using Biogas as coolant; water
|
||||||
be supplied in buckets or (if pipeworks are installed) through pipes; one water bucket
|
can be supplied in buckets or (if pipeworks mod is installed) through pipes; one water bucket
|
||||||
is converted to one ice cube, in case of pipes there is no need for any containers but
|
is converted to one ice cube; in case of pipe network there is no need for any containers
|
||||||
water should be reaching device via pipelines; empty buckets are returned as secondary
|
however fresh water should be provided via pipelines; empty buckets are returned as secondary
|
||||||
products so Freezer can be easily paired with Liquid Sampler and other Tubelib machinery
|
products so Freezer can be easily paired with Liquid Sampler and other Tubelib machinery;
|
||||||
|
punch node to see status
|
||||||
|
|
||||||
Planned:
|
Planned:
|
||||||
|
|
||||||
|
@ -21,15 +21,16 @@
|
|||||||
CPU resources for inactive machine (timer is stopped).
|
CPU resources for inactive machine (timer is stopped).
|
||||||
|
|
||||||
Operational info:
|
Operational info:
|
||||||
* machine first checks for buckets with water, if there are none
|
* machine checks for buckets with water first and if there are none
|
||||||
then tries to take water from pipes
|
tries to take water from pipeline
|
||||||
* when fuel ends, machine switches off automatically and has to
|
* when fuel ends, machine switches off automatically and has to
|
||||||
be powered on by player after loading Biogas
|
be powered on again manually after refilling Biogas
|
||||||
* if there is nothing to freeze, machine enters standby mode; it
|
* if there is nothing to freeze, machine enters standby mode; it
|
||||||
will automatically pick up work as soon as any water source becomes
|
will automatically pick up work as soon as any water source becomes
|
||||||
available again
|
available again
|
||||||
* there is 1 tick gap between items to unload ice and load internal
|
* there is 1 tick gap between items to unload ice and load internal
|
||||||
water tank or freezing tray
|
water tank or freezing tray; this a design choice to make timer
|
||||||
|
callback run faster
|
||||||
* Biogas is used only when device actually freezes
|
* Biogas is used only when device actually freezes
|
||||||
* partially frozen items (due to work being interrupted by on/off
|
* partially frozen items (due to work being interrupted by on/off
|
||||||
switch) have to be frozen again from beginning, Biogas used for
|
switch) have to be frozen again from beginning, Biogas used for
|
||||||
|
Loading…
x
Reference in New Issue
Block a user