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