From 582ac287f808c9daf31ebad5ae4f849473246165 Mon Sep 17 00:00:00 2001 From: loosewheel <76670709+loosewheel@users.noreply.github.com> Date: Tue, 16 Nov 2021 04:44:02 +1000 Subject: [PATCH] Add files via upload --- docs/breaker.txt | 44 +++++++++++++ docs/collector.txt | 33 ++++++++++ docs/detector.txt | 106 +++++++++++++++++++++++++++++++ docs/digiswitch.txt | 21 +++++++ docs/dispenser.txt | 47 ++++++++++++++ docs/dropper.txt | 40 ++++++++++++ docs/fan.txt | 24 +++++++ docs/hologram.txt | 107 ++++++++++++++++++++++++++++++++ docs/movefloor.txt | 17 +++++ docs/player_button.txt | 21 +++++++ docs/puncher.txt | 69 ++++++++++++++++++++ docs/siren.txt | 46 ++++++++++++++ docs/solid_color_conductors.txt | 9 +++ 13 files changed, 584 insertions(+) create mode 100644 docs/breaker.txt create mode 100644 docs/collector.txt create mode 100644 docs/detector.txt create mode 100644 docs/digiswitch.txt create mode 100644 docs/dispenser.txt create mode 100644 docs/dropper.txt create mode 100644 docs/fan.txt create mode 100644 docs/hologram.txt create mode 100644 docs/movefloor.txt create mode 100644 docs/player_button.txt create mode 100644 docs/puncher.txt create mode 100644 docs/siren.txt create mode 100644 docs/solid_color_conductors.txt diff --git a/docs/breaker.txt b/docs/breaker.txt new file mode 100644 index 0000000..12c1883 --- /dev/null +++ b/docs/breaker.txt @@ -0,0 +1,44 @@ +Breaker +------- +* This block is only available if digilines and/or mesecons are loaded. + +Breakers dig the node directly in front of them and drop the item at the +back of them. The node is only dug if the breaker has a tool that can +dig it, of if it can be dug by hand. The tool is worn if used. Also acts +as a digilines conductor. If the hopper mod is loaded, will take tools +from the top and sides. + +Only the owner can dig or access the form of the locked version. + +UI + +Channel - digilines channel of breaker. +Top 1 slot inventory - tool to use. +Bottom 32 slot inventory - player's inventory. + +Mesecons + Digs the node in front when power is turned on, if it can. + +Digilines messages + +"break" + Digs the node in front when power is turned on, if it can. + +"eject side" + Drop the tool in the tool slot at the given side. Valid sides are "left", + "right", "back", "front". If side is omitted or invalid "front" is used. + +When a breaker digs a node or wears out the tool a digilines message is +sent with the puncher's channel. The message is a table with the following +keys: +{ + action = "", + name = "" +} + +action + Will be "break" or "tool". + +name + For "break" action the registered node name of what was dug. + For "tool" action the registered tool name of the tool that wore out. diff --git a/docs/collector.txt b/docs/collector.txt new file mode 100644 index 0000000..4788b6a --- /dev/null +++ b/docs/collector.txt @@ -0,0 +1,33 @@ +Collector +--------- +* This block is only available if digilines is loaded. + +Picks up dropped items in adjacent block, with optional filtering. Also +acts as a digilines conductor. If the hopper mod is loaded, will take items +from the top and sides, and release them from the bottom. + +Only the owner can dig or access the form of the locked version. + +UI + +Channel - digilines channel of collector. +Left 16 slot inventory - storage of picked up items. +Right 8 slot inventory - Filter list. Place what items should be picked + up in this list. Leave empty to pick up all. +Bottom 32 slot inventory - player's inventory. + +Digilines messages + +"start" + Start the collector. + +"stop" + Stop the collector. + +When items are picked up a digilines message is sent with the collector's +channel. The message is a table with the following keys: +{ + action = "collect", + name = "", -- name of picked up items. + count = -- number of the item picked up. +} diff --git a/docs/detector.txt b/docs/detector.txt new file mode 100644 index 0000000..2ebae9a --- /dev/null +++ b/docs/detector.txt @@ -0,0 +1,106 @@ +Detector +-------- +* This block is only available if digilines and/or mesecons are loaded. + +Detects items or entities within a given radius. Also acts as a +digilines conductor. + +Only the owner can dig or access the form of the locked version. + +UI + +Channel - digilines channel of detector. +Radius - block distance from detector to detect. +Entities - if checked detects entities. +Players - if checked detects players. +Drops - if checked detects drops. +Nodes - if checked detects nodes. + +mode: + All - detects to radius in all directions, including diagonal. + Forward - detects to radius directly in front of the detector (one block high). + Up - detects to radius directly above the detector (one block wide). + Down - detects to radius directly below the detector (one block wide). + +Mesecons + Mesecons power is turned on when something is detected, and turned off + when nothing is detected. + +Digilines messages + +"start" + Start the detector. + +"stop" + Stop the detector. + +"radius " + Set radius of the detector. should be a number from 1 to 5, and is + trimmed to this range. + +"entities " + Set detection of entities on or off. + +"players " + Set detection of players on or off. + +"drops " + Set detection of drops on or off. + +"nodes " + Set detection of nodes on or off. + +"mode all" +"mode forward" +"mode up" +"mode down" + Set the detector's mode. + +When items or entities are detected a digilines message is sent with the +detector's channel. A message is sent for each found item/entity. The +message is a table with the following keys: +{ + action = "detect", + type = "", -- will be "entity", "player", "drop" or "node" + name = "", + label = "