mt-mods / pipeworks

Pipeworks is a mod for Minetest allowing the crafting and usage of pipes and tubes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing description on how to use digiline filter-injector

GrimPixel opened this issue · comments

I don't know which command it takes. Wiki doesn't say that. I would like to see the command displayed directly next to the “Channel”.

commented

Command is too complicated for displaying next to channel, it would require another form in game.
Should also be documented but here's partial list of parameters for commands:

Simple text command: "modname:itemname 50" where 50 is count.
And then table command which allows a lot more configuration, something like this:

{
  slotseq = "priority", -- "random" or "rotation" sets inventory slot lookup mode
  exmatch = true, -- or false sets requirement for exact matching
  name = "modname:itemname", -- item name
  group = "cracky", -- item group filter
  count = 50, -- requested item count, if exmatch is false then smaller stack can be returned
  wear = {1,2}, -- wear filter, min/max match if table, equality if number
  metadata = "" -- metadata filter, match if serialized metadata equals
}