> For the complete documentation index, see [llms.txt](https://docs.mipcraft.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mipcraft.eu/network-manager/commands.md).

# Commands

All NetworkManager commands are executed on the proxy server (Velocity or BungeeCord). Admin commands require the `NetworkManager.admin` permission.

## General Commands

| Command                      | Permission             | Description                                                                                          |
| ---------------------------- | ---------------------- | ---------------------------------------------------------------------------------------------------- |
| `/report <player> <reason>`  | None                   | File a report against a player or submit a network bug.                                              |
| `/playtime [player]`         | None                   | View your cumulative playtime across the network or inspect another player's stats.                  |
| `/hub`                       | None                   | Send yourself to the best available HUB server.                                                      |
| `/lobby [game]`              | None                   | Send yourself to the lobby of a specific game (e.g. `/lobby BedWars`).                               |
| `/to <player>`               | `NetworkManager.admin` | Teleport yourself to another player's active server.                                                 |
| `/tome <player>`             | `NetworkManager.admin` | Teleport another player to your active server.                                                       |
| `/toserer <player> <server>` | `NetworkManager.admin` | Redirect a player directly to a specific server ID. *(Note: Registered as `/toserer` in the proxy).* |

## Moderation & Admin Commands

| Command                             | Permission             | Description                                                       |
| ----------------------------------- | ---------------------- | ----------------------------------------------------------------- |
| `/ann <message>`                    | `NetworkManager.admin` | Broadcast a network-wide chat message (supports hex color codes). |
| `/announcement <msg>`               | `NetworkManager.admin` | Alias for `/ann`.                                                 |
| `/status`                           | `NetworkManager.admin` | Open the in-game server status GUI menu.                          |
| `/kick <player> [reason]`           | `NetworkManager.admin` | Kick a player from the network with an optional reason.           |
| `/ban <player> <duration> [reason]` | `NetworkManager.admin` | Ban a player (UUID and IP) from the network.                      |
| `/unban <uuid/player>`              | `NetworkManager.admin` | Revoke a player's ban from the database.                          |

### Ban Durations

When executing `/ban`, the `<duration>` argument supports the following formats:

* `perma` — Permanent ban.
* Time values: `1h` (1 hour), `24h` (24 hours), `7D` (7 days), `30D` (30 days), `1Y` (1 year). You can combine values (e.g., `1M15D` or `24h`).

## Permissions Command (`/nmp`)

The `/nmp` command handles permission groups, prefixes, suffixes, and individual nodes stored in the database.

* **Permission**: `NetworkManager.admin`

### Subcommands list

#### 1. System Operations

* `/nmp reload` — Reloads all groups and syncs permissions across all online players and backend servers.

#### 2. Group Management

* `/nmp group create <groupKey> <displayName>` — Create a new permission group.
* `/nmp group delete <groupKey>` — Remove a permission group and clear all associations.
* `/nmp group <groupKey> set <prefix|suffix|inherits|weight> <value>` — Modify group metadata:
  * **prefix**: Sets chat/scoreboard prefix (e.g. `&c[Admin]` ).
  * **suffix**: Sets chat suffix.
  * **inherits**: Sets parent group for inheritance tree.
  * **weight**: Numeric sorting priority (used to determine primary groups).
* `/nmp group <groupKey> perm <add|remove> <permission> [server] [world]` — Manage group permission nodes. Optionally restrict to a specific server or world.

#### 3. Player Management

* `/nmp player <player> group <add|remove> <groupKey> [server] [expiration_seconds]` — Manage player group memberships. You can restrict the group to a specific server, or set an expiry time in seconds (for temporary ranks).
* `/nmp player <player> perm <add|remove> <permission> [server] [world]` — Add or remove a personal permission node for a specific player.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.mipcraft.eu/network-manager/commands.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
