# Ez-FakeID

## Configuration :

**Ce script est très simple à configurer si vous suivez attentivement cette documentation !**&#x20;

{% tabs %}
{% tab title="👨‍💻 Config.lua" %}
**Configurez les positions de peds :**&#x20;

```lua
EzFakeID.PedList = {
    { model = "ig_claypain", position = vector4(998.41137695312, -118.13326263428, 74.061500549316, 155.62869262695) },
    { model = "ig_clay", position = vector4(995.34790039062, -117.90363311768, 74.061492919922, 240.56124877930) },
}
```

\
\
**Configurer les points d'intéractions :**

```lua
EzFakeID.InteractPoint = { -- si InteractType = "marker" alors radius signifie la distance d'affichage du Marker ! 
    { text = "Intéragir avec le faussaire", radius = 5, distance = 2, position = vector3(997.89257812500, -119.02475738525, 73.950607299805) },
    { text = "Acheter des faux papiers", radius = 5, distance = 2, position = vector3(988.99273681641, -135.55226135254, 73.880943298340) },
}
```

\
\
\
\
**Modifiez le type d'intéractions :**

```lua
EzFakeID.InteractType = "ox_target" -- "ox_target" / "marker"
```

\
\
\
\
**Configurez la couleur des icones dans le menu ainsi que celle des marqueurs** :&#x20;

```lua
EzFakeID.iconColor = "00FF93"
EzFakeID.markerColor = vector4(0, 255, 147, 255) -- couleur rgba du marker !
```

\
\
\
\
**Configurez le type d'argent avec lequel le joueurs pourra payer :**&#x20;

```lua
EzFakeID.AccountTypeForPayment = "money"
```

\
\
\
\
**Modifier le prix de changement du nom/prénom ainsi que le nom de l'item de la carte d'identité :**&#x20;

```lua
EzFakeID.PriceForFirstName = 2000
EzFakeID.PriceForLastName = 2000
EzFakeID.IDCardItem = 'carteidentite'
```

\
\
\
\
**Configurez la liste des licenses proposées par le menu :**&#x20;

```lua
EzFakeID.PriceForPhysicItem = 100
EzFakeID.ListOfLicenseBuyable = {	
    {title = "Acheter un PPA", typeoflicense = "weapon", item = "ppa", price = 100, icon = "gun"},
    {title = "Acheter un Permis VOITURE", typeoflicense = "drive", item = "permis", price = 100, icon = "id-badge"},
    {title = "Acheter un Permis MOTO", typeoflicense = "drive_bike", item = false, price = 100, icon = "id-badge"},
    {title = "Acheter un Permis CAMION", typeoflicense = "drive_truck", item = false, price = 100, icon = "id-badge"},
    {title = "Acheter un Permis CBD", typeoflicense = "weed_processing", item = "weedlicense", price = 100, icon = "cannabis"},
}
```

{% endtab %}

{% tab title="🎉 Enjoy !" %}
Votre système de changement d'identité est enfin prêt à être utilisé sur votre serveur ! 🎉
{% 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/script-ez-illegal/ez-fakeid.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.
