From 0cebe1b9926daa58545bafea29b1308983c96062 Mon Sep 17 00:00:00 2001 From: Jane <8921501-JaneatGit@users.noreply.gitlab.com> Date: Thu, 20 May 2021 04:51:31 +0000 Subject: [PATCH] Better grammar --- tutorials/auto_farm.html | 26 +++++++------- tutorials/digilines.html | 48 ++++++++++++------------- tutorials/digtron.html | 31 ++++++++-------- tutorials/pipeworks_charge_digtron.html | 18 +++++----- 4 files changed, 61 insertions(+), 62 deletions(-) diff --git a/tutorials/auto_farm.html b/tutorials/auto_farm.html index 7928561..802d2d9 100644 --- a/tutorials/auto_farm.html +++ b/tutorials/auto_farm.html @@ -11,8 +11,8 @@ Second Edition. Thanks To Amie who helped me to write this Document.
Auto Farming is way to perform farming without aid of manual. -this can be achieved by using mesecons, pipework and technic. +
Auto Farming is a way to perform farming without the aid of manual labor.
+This can be achieved by using mesecons, pipeworks, and technic items.
Required materials:
This is a logical setup of how your auto farm should be setup.Here b is node breaker , C is crop , d1 is detector configured to detect the air , d2 is detector configured to detect the crop. The detailed version of the procedure is given below. +
This is a logical setup of how your auto farm should be setup. Here b is node breaker, C is crop, d1 is detector configured to detect the air, d2 is detector configured to detect the crop. The detailed version of the procedure is given below.
-Hey this is sivarajan. I'm happy to present to you the Digiline tutorial page. This contains all the basics for a beginner to meddle with digilines. Digilines are powerful tool for sending and receiving data , counducting the stuffs. I hope this book will be a guilde to begin Diglines. Thanks for reading this book. +Hey this is sivarajan. I'm happy to present to you the Digiline tutorial page. This contains all the basics for a beginner to meddle with digilines. Digilines are powerful tools used for sending and receiving data, and conducting through wires. I hope this book will be a guide to begin Digilines. Thanks for reading this book.
interrupt(1) @@ -95,7 +95,7 @@ Code:"message: " .. event.msg) end --[[Where: Event is a table generated by the lua controller when a - particular event is recoginzed by the LUA controller. It consist of : + particular event is recoginzed by the LUA controller. It consists of : event ={ type ="
" @@ -120,7 +120,7 @@ Message: hi --slave controller
-Note : a digiline message ie event.msg. can be in form of a Table. it must be noted that we cannot print a table. We can only print the pariticular value of table. +Note : a digiline message ie event.msg. can be in the form of a Table. it must be noted that we cannot print a table. We can only print a particular value of the table. Say this code is executed by the master digiline
digiline_send("ch",{a=1,b=2}) @@ -135,7 +135,7 @@ event = { } ]]
So if we try to print the msg on a digiline display, it will show an error: Message is too complex. But you can print a table to the command line (works if you have server privs). by using print() -function in Lua.Note that minetest must be started using commandline.Or you can use digiline termial to print values +function in Lua. Note that minetest must be started using commandline. Or you can use digiline termial to print values. @@ -143,15 +143,15 @@ function in Lua.Note that minetest must be started using commandline.Or you can
Introduction : these come with pipeworks.
Introduction: the autocrafter is a useful tool when it comes to automation -If you put a craft recipie in the 3*3 box, and place materials in the large box at the bottom, it will commence automatically crafting stuff (hence its name). +
Introduction: the autocrafter is a useful tool when it comes to automation. +If you put a crafting recipe in the 3*3 box, and place materials in the large box at the bottom, it will commence automatically crafting stuff (hence its name).
To control auto crafter using lua controller:
digiline_send("<channel>",{ {"node1","node2","node3"} , {"node4","node5","node6"} @@ -166,8 +166,8 @@ it can be checked in the inventory. send "on " to the appropriate digiline chanel to turn it on. send "off" to the appropriate chanel to turn it off.4.2 Injectors
-Craft a digline injector and connect it with lua controller. -Now here is the digiline requests format to be sent to injector:
+Craft a digiline injector and connect it with lua controller. +Now here is the digiline requests format to be sent to injector:
{ slotseq = "priority", @@ -218,7 +218,7 @@ event = { name = "default:stone", --name and count will chage according to the node wear = 0 - -- this says about the condition of tool + -- this is the condition of the tool }, action = "uput", to_slot = 1 --denotes which slot the stuff is @@ -262,7 +262,7 @@ event ={ -- \represents a new line in a book page = "1", description = "\27(T@default)\"\27Fmy book\27E\" by \27Fsivarajan\27E\27E" - --this is the text shown to other player viewing the book + --this is the text shown to other players viewing the book }, metadata = "", count = 1, @@ -271,7 +271,7 @@ event ={ }, action = "umove", from_slot = 11, - -- when moving stuff read the Notes + -- when moving stuff read the Notes to_slot = 3 } } @@ -281,11 +281,11 @@ event ={here :
action takes the value : -
"uput" - when you puts stuff inside the chest. +
"uput" - when you put stuff inside the chest.
"tput" - when a tube puts stuff inside the chest.
"empty" - when digiline chest is empty*. -
"utake"- when you takes stuff from inside the chest. +
"utake"- when you take stuff from inside the chest.
"ttake" - when a tube takes stuff from inside the chest.
"full" - when the digiline chest is full* @@ -299,9 +299,9 @@ here :
from_slot is available when moving a stuff inside the chest.
Chapter 6 Digilines and Technic
-This chapter describes how to interface technic components to digilines. We can get the data of these technic machines to make useful things like a system that warns when supply is at 0. +
This chapter describes how to interface technic components to digilines. We can get the data of these technic machines to make useful things like a system that warns when the supply is at 0.
6.1 Switches
-A switching station is a important node that connects the all of your techinc components. It sends the EU (Electronic Units) supply and EU demand to the digiline controller (LUA controller). A channel name for a switching station can be set by right clicking on it. Its event table will be in form of : +
A switching station is an important node that connects all of your techinc components. It sends the EU (Electronic Units) supply and EU demand to the digiline controller (LUA controller). A channel name for a switching station can be set by right clicking on it. Its event table will be in form of :
event{ type="digiline", @@ -314,7 +314,7 @@ event{ --Before, you must send GET String to the switching station. This is decribed in 1.4.6.2 Supply converter
-It converts HV power to LV power, MV to LV,HV to MV Vise versa.(MV is not available in this server).the Channel of the converter can be set by right clicking on it and renaming the default channel. General form of Event table: +
It converts HV power to LV power, MV to LV,HV to MV Vise versa.(MV is not available in this server). The Channel of the converter can be set by right clicking on it and renaming the default channel. General form of Event table:
event ={ type= "digiline" @@ -382,17 +382,17 @@ event ={6.4 Interfacing Technic and Digiline
This is an example for using techic data in digiline. Here we are printing the demand in a digiline LCD
-Apparatus required: +
Items required:
- Blinky Plant. -
- Any Technic node.Here it is Switching station. +
- Any Technic node. In this case, a Switching station.
- Digiline LCD.
- LUA controller.
- Digiline and Mesecon wires.
Procedure:
-
- Connect switching station and the digiline display seperately with Lua Controller with digiline cable. +
- Connect the switching station and digiline display seperately with Lua Controller and digiline cable.
- Connect blinky plant in seperate port with mesecon wire. diff --git a/tutorials/digtron.html b/tutorials/digtron.html index 651724a..f1944d2 100644 --- a/tutorials/digtron.html +++ b/tutorials/digtron.html @@ -6,34 +6,33 @@
Digtrons
-Digtrons are robust machines which can be used to build or dig regular patterns. To build a digtron, you need an automatic control module. It must be powered while it works, either by fuel or by a HV electrical network. +
Digtrons are robust machines that can be used to build or dig regular patterns. To build a digtron, you need an automatic control module. It must be powered while it works, either by fuel or by a HV electrical network.
Automatic Control Module
-This helps for controlling the digtron (note) this must be connected to the digtron for it to work. -
Cycles - when triggered, this controller will try to run for the given number of cycles. the cycle count will decrement as it runs, so if it gets halted by a problem you can fix the problem and restart (note) the problems might be the area is protected, either it is in the air, either the digtron has run out of fuel, blocks to place. -
Slope - for diagnal digging. After moving forward this number of nodes the auto controller will add an additional cycle moving the digtron laterally in the direction of the arrows on the side of this controller. Set to 0 for no lateral digging. -
Offset - Sets the offset of lateral motion defined in the Slope field. (Note) this offset is relative to the -controller's loaction. The controller will move laterally when it reaches the indicated point. -
Delay - Number of seconds to wait between each -cycles. (Note) due to the server rules the Delay must be 1 or higher because it lags the server. +
This helps to control the digtron. (Note: this must be connected to the digtron for it to work.) +
Cycles - When triggered, this controller will try to run for the given number of cycles. The cycle count will decrement as it runs, so if it gets halted by a problem you can fix the problem and restart. (Note: the problem might be that the area is protected, or is in the air, or the digtron has run out of fuel or blocks to place.) +
Slope - For diagonal digging. After moving forward this number of nodes, the auto controller will add an additional cycle moving the digtron laterally in the direction of the arrows on the side of this controller. Set to 0 for no lateral digging. +
Offset - Sets the offset of lateral motion defined in the Slope field. (Note: this offset is relative to the +controller's loaction. The controller will move laterally when it reaches the indicated point.) +
Delay - Number of seconds to wait between each cycle. (Note: due to the server rules the Delay must be 1 or higher because it lags the server.)
Builder Head
-This will builds blocks the way it is facing unless its blocked by something on front . +
This will build blocks the way they are facing unless they are blocked by something in front.
Extrusion - Builder will extude this many blocks in the way it is facing. -
Periodic - Builder will build every once n steps these steps are globally aligned so all builders with the same period and offset will build in the same locatuion. +
Periodic - Builder will build every once n steps these steps are globally aligned so all builders with the same period and offset will build in the same location.
Offset - Offsets the start of periodcity counting by this amount for example, a builder with period 2 and offset 0 builds every even-numbered block and one with period 2 and offset 1 builds every odd-numbered block. -
Facing - Value of 0-23. not all types of blocks make use of this. Use the 'Read & Save' to copy the block its facing currently in the builder output location. +
Facing - Value of 0-23. Not all types of blocks make use of this. Use the 'Read & Save' to copy the block its facing currently in the builder output location.
Other Digtron Components
-
diff --git a/tutorials/pipeworks_charge_digtron.html b/tutorials/pipeworks_charge_digtron.html index c642ce0..438451c 100644 --- a/tutorials/pipeworks_charge_digtron.html +++ b/tutorials/pipeworks_charge_digtron.html @@ -7,8 +7,8 @@- Rotation Axle - It rotates the digtron to the side of it (note) the area beside it must be empty for this to rotate the digtron. +
- Rotation Axle - It rotates the digtron to the side of it (Note: the area beside it must be empty for this to rotate the digtron.)
- Digtron Lights - It lights the area near the digtron while mining or building.
- Inventory Storage - It's used to store items for building for the Builder or it is used for receiving the stuff from the digger heads.
- Digtron Structure - It is used to connect the digtron together :D -
- Battery Holder - it holds batteries for powering the digtron -
- Digger Head - digs the block in front of it when the digger started -
- Dual Digger Head - digs the 2 blocks that its facing when the digtron is started -
- Locked Crate - This is used to store a digtron in it when attached to a digtron (note) all the part of digtron must be connected for it to take all the digtron parts. +
- Battery Holder - It holds batteries for powering the digtron. +
- Digger Head - Digs the block in front of it when the digger is started. +
- Dual Digger Head - Digs the 2 blocks that its facing when the digtron is started. +
- Locked Crate - This is used to store a digtron in it when attached to a digtron (Note: all the parts of the digtron must be connected for it to take all the digtron parts.)
- Fuel Storage - Uses fuel such as wood, coal etc to power the digtron when connected to a digtron.
Pipeworks example: Auto charge a digtron
What could be nicer than being able to automatically charge the batteries in your digtron! -with pipeworks, it's possible! here you can learn about the digtron -
+With pipeworks, that's possible! Here you can learn about your digtron. +
note that this tutorials is working with any other chest than the digtron batteries holder
Note that this tutorial works with any other chest than the digtron batteries holder. @@ -20,11 +20,11 @@ with pipeworks, it's possible! here you can learn about t- Blue crystals - the best! ... with a few batteries it lasts longer!!
-if you use a self-contained injetor chest as source ... it had to be set on Itemwise and the stackwise injector is not to put after. +If you use a self-contained injector chest as a source ... it must be set on Itemwise and the stackwise injector is not to be put after.
Stackwise injector
-place with the batteries holder it push batteries into tubes. you can trigger it with: +
Place with the batteries holder. It pushes batteries into tubes, and you can trigger it with:
- A blinky plant and a mesecon - the mesecon is put on the injector and the plant at right or left of the injector (with shift+ click). You can remove the plant or put a switch to stop the process when all batteries are charged
@@ -36,7 +36,7 @@ if you use a self-contained injetor chest as source ... it had to be set on Ihv battery box
the high voltage battery box is the central element of the system. -here are the parameters when you are facing the box: +Here are the parameters when you are facing the box:
- control unit - put on the right upgrade slot
- RE bettery - put on the left upgrade slot
@@ -44,7 +44,7 @@ here are the parameters when you are facing the box:- output tube - plug at the right of the box
-note that the boxes can be stacked from left to right, the charged batteries will be automatically ejected towards the boxes / the tube on its right (when you are facing the box) +Note that the boxes can be stacked from left to right. The charged batteries will be automatically ejected towards the boxes / the tube on its right (when you are facing the box)