Go to file
Jordan Irwin 7464a55cdb Add to TODO list 2021-08-04 11:22:14 -07:00
docs Re-generate HTML docs 2021-07-07 20:30:47 -07:00
locale Update localization template & Spanish translation 2021-08-03 17:05:35 -07:00
.gitattributes Add .gitattributes file to exclude certain files & dirs from archives & releases 2021-08-03 17:10:36 -07:00
LICENSE.txt Simplify by not supporting list<type> format 2021-04-14 13:57:20 -07:00
README.md Change name of output doc index file 2021-07-07 20:30:35 -07:00
TODO.txt Add to TODO list 2021-08-04 11:22:14 -07:00
api.lua Fix listmobs command 2021-08-03 17:06:39 -07:00
changelog.txt Increment version to 1.1 2021-08-03 17:08:35 -07:00
chat.lua Update localization template & Spanish translation 2021-08-03 17:05:35 -07:00
helpers.lua Fix listmobs command 2021-08-03 17:06:39 -07:00
init.lua Docs cleanup 2021-07-07 20:00:40 -07:00
logging.lua Cleanup logging 2021-07-07 18:48:38 -07:00
mod.conf Increment version to 1.1 2021-08-03 17:08:35 -07:00
screenshot.png Simplify by not supporting list<type> format 2021-04-14 13:57:20 -07:00
settings.lua Fix docstring 2021-07-07 20:28:17 -07:00
settingtypes.txt Add option to register singleword commands 2021-04-29 05:53:25 -07:00

README.md

List Items chat command for Minetest

Description:

A mod for Minetest that adds a command for listing registered items, entities, & nodes.

screenshot

Usage:

Chat Commands:

/list type [options] [string1] [string2] ...
- Lists registered items or entities available in the game.
- type: List type (e.g. "items", "entities", etc.).
- options: Switches to control output behavior.
    - -v: Display description (if available) after object name.
    - -s: Use shallow search (don't search in descriptions).
- string[1,2] ...: String parameter(s) to filter output.
    - Without any string parameters, all objects registered in game are listed.
    - With string parameters, only objects matching any of the strings will be listed.

Settings:

listitems.bullet_list
- Displays items in a bulleted list.
- type: boolean
- default: true

listitems.enable_singleword
- Registers "/list<type>" commands (e.g. "/listitems", "/listentities", etc.).
- type: boolean
- default: true

Licensing:

Requirements:

  • Minetest minimum version: 5.0
  • Dependencies: none
  • Optional depends:
  • Privileges: none