Powah Magmator Input Source
lua
telem.input.powah.magmator (
peripheralID: string,
categories?: string[] | '*'
)
Mod Dependencies
Requires Minecraft 1.19.2 and Advanced Peripherals.
See the Usage section for a complete list of the metrics in each category.
Name | Type | Default |
---|---|---|
peripheralID | string | nil |
Peripheral ID of the Magmator | ||
categories | string[] | "*" | { "basic" } |
List of metric categories to query. The value lua
|
Usage
lua
local telem = require 'telem'
local backplane = telem.backplane()
:addInput('my_magmator', telem.input.powah.magmator('right', '*'))
:cycleEvery(5)()
Given a Magmator peripheral on the right
side of the computer, this appends the following metrics to the backplane (grouped by category here for clarity):
Basic
Name | Value | Unit |
---|---|---|
powahmagmator:burning | 0 or 1 | |
powahmagmator:fluid | 0.0 - inf | B |
powahmagmator:fluid_capacity | 0.0 - inf | B |
powahmagmator:energy | 0.0 - inf | FE |
powahmagmator:max_energy | 0.0 - inf | FE |