# Installation

{% hint style="warning" %}
**AVERTISSEMENT :** ez-adminmenu utilise ez-pedsmenu pour les changement en PNJ !
{% endhint %}

## Configuration EzAdminMenu :

{% tabs %}
{% tab title="🧬 SQL" %}
Voici le SQL nécessaire au bon fonctionnement du EzAdminMenu !<br>

```sql
CREATE TABLE `report` (
  `id` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `sonid` VARCHAR(200) NOT NULL,
  `reporteur` varchar(255) DEFAULT NULL,
  `nomreporter` varchar(255) DEFAULT NULL,
  `raison` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
);

CREATE TABLE `safe_zones` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `coords` varchar(255) NOT NULL,
  `radius` varchar(255) NOT NULL,
  `restrictions` varchar(255) NOT NULL,
  `showMarker` varchar(255) NOT NULL,
  `markerHeight` varchar(255) NOT NULL,
  `markerColors` varchar(255) NOT NULL,
  `showBlip` varchar(255) NOT NULL,
  `blipColor` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
);

ALTER TABLE `report`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;
```

{% endtab %}

{% tab title="💬 /commands" %}
Listes des commandes inclus dans le EzAdminMenu :&#x20;

```
Ouverture du EzAdminMenu
/ezopenadmin 
```

```
Stock Admin
/ezadminstock items
/ezadminstock weapons
/ezadminstock ammo
/ezadminstock trash
```

```markdown
Copie des coordonées
/ezcch - vector3
/ezcc  - vector4
```

```
Récupèrer les infos d'un joueur ciblé
/getinfo [ID]
```

```
Ouvrir l'inventaire d'un joueur
/openplayerinv [ID] 
```

```
Spawn de véhicules
/spawncarc  - véhicule customisés
/spawncarnc - véhicule non-custom
```

```
NoClip by EzDev
/eznoclip
```

```
Affichage des noms de resources dans les paramètres de changement de touches
/ezernkb - afficher les nom des resource 
/ezdrnkb - retirer le nom des resource 
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: 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://ezdeveloppement.gitbook.io/ezdev-script/ez-adminmenu/installation.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.
