> For the complete documentation index, see [llms.txt](https://wiki.novadev.ovh/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.novadev.ovh/novatolls/07-permissions.md).

# 07 permissions

## Tableau des permissions

| Permission          | Description                     | Defaut |
| ------------------- | ------------------------------- | ------ |
| `novatools.give`    | Utiliser `/tools give`          | op     |
| `novatools.reload`  | Utiliser `/tools reload`        | op     |
| `novatools.config`  | Ouvrir le menu d'administration | op     |
| `novatools.forge`   | Ouvrir la Forge                 | true   |
| `novatools.recycle` | Ouvrir le Recyclage             | true   |

{% hint style="info" %}
`true` signifie que tous les joueurs ont la permission par defaut, meme sans plugin de permissions.\
`op` signifie que seuls les operateurs ont la permission par defaut.
{% endhint %}

## Configuration avec LuckPerms

### Donner forge et recycle a tous les joueurs

```bash
/lp group default permission set novatools.forge true
/lp group default permission set novatools.recycle true
```

### Creer un groupe administrateur NovaTools

```bash
/lp group admin permission set novatools.give true
/lp group admin permission set novatools.reload true
/lp group admin permission set novatools.config true
```

### Retirer la forge aux joueurs non membres

```bash
/lp group default permission set novatools.forge false
/lp group vip permission set novatools.forge true
```

## Configuration avec PermissionsEx

```yaml
groups:
  default:
    permissions:
      - novatools.forge
      - novatools.recycle
  admin:
    permissions:
      - novatools.give
      - novatools.reload
      - novatools.config
      - novatools.forge
      - novatools.recycle
```


---

# 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:

```
GET https://wiki.novadev.ovh/novatolls/07-permissions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
