mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 01:03:46 +01:00
Improve the documentation for chat command definition in lua_api.txt (#13168)
This commit is contained in:
parent
69fc206109
commit
8bbb673c0b
@ -9299,20 +9299,31 @@ Chat command definition
|
|||||||
|
|
||||||
Used by `minetest.register_chatcommand`.
|
Used by `minetest.register_chatcommand`.
|
||||||
|
|
||||||
|
Specifies the function to be called and the privileges required when a player
|
||||||
|
issues the command. A help message that is the concatenation of the params and
|
||||||
|
description fields is shown when the "/help" chatcommand is issued.
|
||||||
|
|
||||||
{
|
{
|
||||||
params = "<name> <privilege>", -- Short parameter description
|
params = "",
|
||||||
|
-- Short parameter description. See the below note.
|
||||||
|
|
||||||
description = "Remove privilege from player", -- Full description
|
description = "",
|
||||||
|
-- General description of the command's purpose.
|
||||||
|
|
||||||
privs = {privs=true}, -- Require the "privs" privilege to run
|
privs = {},
|
||||||
|
-- Required privileges to run. See `minetest.check_player_privs()` for
|
||||||
|
-- the format and see [Privileges] for an overview of privileges.
|
||||||
|
|
||||||
func = function(name, param),
|
func = function(name, param),
|
||||||
-- Called when command is run. Returns boolean success and text output.
|
-- Called when command is run.
|
||||||
-- Special case: The help message is shown to the player if `func`
|
-- * `name` is the name of the player who issued the command.
|
||||||
-- returns false without a text output.
|
-- * `param` is a string with the full arguments to the command.
|
||||||
|
-- Returns a boolean for success and a string value.
|
||||||
|
-- The string is shown to the issuing player upon exit of `func` or,
|
||||||
|
-- if `func` returns `false` and no string, the help message is shown.
|
||||||
}
|
}
|
||||||
|
|
||||||
Note that in params, use of symbols is as follows:
|
Note that in params, the conventional use of symbols is as follows:
|
||||||
|
|
||||||
* `<>` signifies a placeholder to be replaced when the command is used. For
|
* `<>` signifies a placeholder to be replaced when the command is used. For
|
||||||
example, when a player name is needed: `<name>`
|
example, when a player name is needed: `<name>`
|
||||||
@ -9324,6 +9335,18 @@ Note that in params, use of symbols is as follows:
|
|||||||
* `()` signifies grouping. For example, when param1 and param2 are both
|
* `()` signifies grouping. For example, when param1 and param2 are both
|
||||||
required, or only param3 is required: `(<param1> <param2>) | <param3>`
|
required, or only param3 is required: `(<param1> <param2>) | <param3>`
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
{
|
||||||
|
params = "<name> <privilege>",
|
||||||
|
|
||||||
|
description = "Remove privilege from player",
|
||||||
|
|
||||||
|
privs = {privs=true}, -- Require the "privs" privilege to run
|
||||||
|
|
||||||
|
func = function(name, param),
|
||||||
|
}
|
||||||
|
|
||||||
Privilege definition
|
Privilege definition
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user