> For the complete documentation index, see [llms.txt](https://epyk.gitbook.io/epyk-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://epyk.gitbook.io/epyk-docs/pyplugins/pymobcoins/commands-and-permissions.md).

# Commands & Permissions

Use `/mobcoins` to open shops, manage balances, and administer pyMobCoins.

Running `/mobcoins` opens the configured default shop.

### Player commands

| Command                           | Description                            | Permission                         |
| --------------------------------- | -------------------------------------- | ---------------------------------- |
| `/mobcoins`                       | Opens the default MobCoins shop.       | None                               |
| `/mobcoins balance`               | Shows your MobCoins balance.           | `pymobcoins.command.balance`       |
| `/mobcoins balance <player>`      | Shows another online player's balance. | `pymobcoins.command.balance.other` |
| `/mobcoins pay <player> <amount>` | Sends MobCoins to another player.      | `pymobcoins.command.pay`           |
| `/mobcoins toggle summary`        | Toggles earnings summary messages.     | `pymobcoins.command.toggle`        |
| `/mobcoins toggle actionbar`      | Toggles ActionBar coin alerts.         | `pymobcoins.command.toggle`        |

### Aliases

Use `/mobcoins bal` as an alias for `/mobcoins balance`.

### Admin commands

All administrative commands require `pymobcoins.admin`.

<table data-search="false"><thead><tr><th>Command</th><th>Description</th></tr></thead><tbody><tr><td><code>/mobcoins help</code></td><td>Shows the plugin help menu.</td></tr><tr><td><code>/mobcoins reload</code></td><td>Reloads plugin configuration files.</td></tr><tr><td><code>/mobcoins refresh</code></td><td>Refreshes every rotating shop.</td></tr><tr><td><code>/mobcoins refresh &#x3C;shop></code></td><td>Refreshes one rotating shop.</td></tr><tr><td><code>/mobcoins add &#x3C;player> &#x3C;amount></code></td><td>Adds MobCoins to a player.</td></tr><tr><td><code>/mobcoins give &#x3C;player> &#x3C;amount></code></td><td>Alias for <code>/mobcoins add</code>.</td></tr><tr><td><code>/mobcoins take &#x3C;player> &#x3C;amount></code></td><td>Removes MobCoins from a player.</td></tr><tr><td><code>/mobcoins set &#x3C;player> &#x3C;amount></code></td><td>Sets a player's MobCoins balance.</td></tr><tr><td><code>/mobcoins multiplier set &#x3C;player> &#x3C;amount></code></td><td>Sets a player's personal multiplier.</td></tr><tr><td><code>/mobcoins multiplier add &#x3C;player> &#x3C;amount></code></td><td>Adds to a player's personal multiplier.</td></tr><tr><td><code>/mobcoins event start &#x3C;event></code></td><td>Starts a configured MobCoins event.</td></tr><tr><td><code>/mobcoins event stop</code></td><td>Stops the active MobCoins event.</td></tr></tbody></table>

### Permissions

| Permission                         | Grants access to                                                   | Default  |
| ---------------------------------- | ------------------------------------------------------------------ | -------- |
| `pymobcoins.admin`                 | Administrative commands, balance editing, multipliers, and events. | OP       |
| `pymobcoins.command.balance`       | Checking your own balance.                                         | Everyone |
| `pymobcoins.command.balance.other` | Checking another online player's balance.                          | OP       |
| `pymobcoins.command.pay`           | Sending MobCoins to another player.                                | Everyone |
| `pymobcoins.command.toggle`        | Toggling ActionBar and summary notifications.                      | Everyone |

### Examples

```
# Give Steve 500 MobCoins.
/mobcoins give Steve 500

# Set Steve's balance to 10,000.
/mobcoins set Steve 10000

# Refresh the daily rotating shop.
/mobcoins refresh daily

# Start the double_coins event.
/mobcoins event start double_coins

# Set Steve's multiplier to 3×.
/mobcoins multiplier set Steve 3
```

### Notes

* Players must be online for balance edits, payments, and multiplier commands.
* Multipliers accept whole numbers, such as `2`, `3`, or `4`.
* `/mobcoins refresh <shop>` only supports rotating shops.
* Tab completion supports commands, players, shops, and events.


---

# 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://epyk.gitbook.io/epyk-docs/pyplugins/pymobcoins/commands-and-permissions.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.
