Perm -> Permission

master
Minetest-j45 2022-03-17 16:15:06 +00:00
parent f88e7ccb81
commit 34b5af89bb
1 changed files with 17 additions and 17 deletions

View File

@ -5,28 +5,28 @@ mt-multiserver-chatcommands provides a useful chat command interface for mt-mult
> `shutdown` > `shutdown`
``` ```
Perm: cmd_shutdown Permission: cmd_shutdown
Description: Disconnect all clients and stop the server. Description: Disconnect all clients and stop the server.
Usage: `shutdown` Usage: `shutdown`
``` ```
> `find` > `find`
``` ```
Perm: cmd_find Permission: cmd_find
Description: Check whether a player is connected and report their upstream server if they are. Description: Check whether a player is connected and report their upstream server if they are.
Usage: `find <name>` Usage: `find <name>`
``` ```
> `addr` > `addr`
``` ```
Perm: cmd_addr Permission: cmd_addr
Description: Find the network address of a player if they're connected. Description: Find the network address of a player if they're connected.
Usage: `addr <name>` Usage: `addr <name>`
``` ```
> `alert` > `alert`
``` ```
Perm: cmd_alert Permission: cmd_alert
Description: Send a message to all connected clients regardless of their upstream server. Description: Send a message to all connected clients regardless of their upstream server.
Usage: `alert <message>` Usage: `alert <message>`
``` ```
@ -34,7 +34,7 @@ Usage: `alert <message>`
> `send` > `send`
``` ```
Perm: cmd_send Permission: cmd_send
Description: Send player(s) to a new server. player causes a single player to be redirected, current affects all players that are on your current server and all affects everyone. Description: Send player(s) to a new server. player causes a single player to be redirected, current affects all players that are on your current server and all affects everyone.
Usage: `send <player <server> <name> | current <server> | all <server>>` Usage: `send <player <server> <name> | current <server> | all <server>>`
Telnet Usage: `send <player <server> <name> | all <server>>` Telnet Usage: `send <player <server> <name> | all <server>>`
@ -43,21 +43,21 @@ Example: `send player lobby bob`
> `players` > `players`
``` ```
Perm: cmd_players Permission: cmd_players
Description: Show the player list of every server. Description: Show the player list of every server.
Usage: `players` Usage: `players`
``` ```
> `reload` > `reload`
``` ```
Perm: cmd_reload Permission: cmd_reload
Description: Reload the configuration file. You should restart the proxy instead if possible. Description: Reload the configuration file. You should restart the proxy instead if possible.
Usage: `reload` Usage: `reload`
``` ```
> `group` > `group`
``` ```
Perm: cmd_group Permission: cmd_group
Description: Display the group of a player. Display your group if no player name is specified. Description: Display the group of a player. Display your group if no player name is specified.
Usage: `group [name]` Usage: `group [name]`
Telnet Usage: `group <name>` Telnet Usage: `group <name>`
@ -65,7 +65,7 @@ Telnet Usage: `group <name>`
> `perms` > `perms`
``` ```
Perm: cmd_perms Permission: cmd_perms
Description: Show the permissions of a player. Show your permissions if no player name is specified. Description: Show the permissions of a player. Show your permissions if no player name is specified.
Usage: `perms [name]` Usage: `perms [name]`
Telnet Usage: `perms <name>` Telnet Usage: `perms <name>`
@ -73,14 +73,14 @@ Telnet Usage: `perms <name>`
> `gperms` > `gperms`
``` ```
Perm: cmd_gperms Permission: cmd_gperms
Description: Show the permissions of a group. Description: Show the permissions of a group.
Usage: `gperms <group>` Usage: `gperms <group>`
``` ```
> `server` > `server`
``` ```
Perm: cmd_server Permission: cmd_server
Description: Display your current upstream server and all other configured servers. If a valid server name is specified, switch to that server. Description: Display your current upstream server and all other configured servers. If a valid server name is specified, switch to that server.
Usage: `server [server]` Usage: `server [server]`
Telnet Usage: `server` Telnet Usage: `server`
@ -88,42 +88,42 @@ Telnet Usage: `server`
> `kick` > `kick`
``` ```
Perm: cmd_kick Permission: cmd_kick
Description: Disconnect a player with an optional reason. Description: Disconnect a player with an optional reason.
Usage: `kick <name> [reason]` Usage: `kick <name> [reason]`
``` ```
> `ban` > `ban`
``` ```
Perm: cmd_ban Permission: cmd_ban
Description: Ban a player from using the proxy. Description: Ban a player from using the proxy.
Usage: `ban <name>` Usage: `ban <name>`
``` ```
> `unban` > `unban`
``` ```
Perm: cmd_unban Permission: cmd_unban
Description: Remove a player from the ban list. Accepts addresses and names. Description: Remove a player from the ban list. Accepts addresses and names.
Usage: `unban <name | address>` Usage: `unban <name | address>`
``` ```
> `uptime` > `uptime`
``` ```
Perm: cmd_uptime Permission: cmd_uptime
Description: Show the uptime of the proxy. Description: Show the uptime of the proxy.
Usage: `uptime` Usage: `uptime`
``` ```
> `help` > `help`
``` ```
Perm: cmd_help Permission: cmd_help
Description: Show help for a command (all commands if unspecified). Description: Show help for a command (all commands if unspecified).
Usage: `help [command]` Usage: `help [command]`
``` ```
> `usage` > `usage`
``` ```
Perm: cmd_usage Permission: cmd_usage
Description: Show the usage string of a command (all commands if unspecified). Description: Show the usage string of a command (all commands if unspecified).
Usage: `usage [command]` Usage: `usage [command]`
``` ```