# Configuration

Go to `config.lua`&#x20;

```lua
Config = {}

Config.Framework = 'qb' -- Framework -> 'esx', 'qb'

Config.Locales = 'en' -- Language -> 'en', 'it', 'fr'

Config.NotificationSystem = 'qb' ---> 'esx', 'qb', 'ox', 'okok'

Config.TextUI = 'qb' ---> 'esx', 'qb' 'ox', 'okok'

Config.UseOxTarget = 'false' -- Use Ox Target -> 'true' / Use Marker -> 'false'

-- Laundry Locations
Config.LaundryLocations = {
    vector3(1138.2142, -991.3291, 46.1131),
    vector3(1136.4723, -976.5604, 46.5216),
    vector3(900.3210, -600.4567, 35.8910)
    -- vector3(0,0,0) -- Add more locations here
}

-- Time to wash the money in ms
Config.WashTime = 2000

-- Washed money percentage
Config.MinPercent = 80
Config.MaxPercent = 90



--- MARKER CONFIG ---

Config.UseCustomMarker = 'true' -- false = Standard Fivem Marker / true = Custom Marker with your Logo

Config.DrawDistance = 10.0

Config.interactDistance = 1.0


-- Config Custom Marker
Config.CMarker = {
    size = 0.7,  -- Marker size
    bobUpAndDown = false,  -- Should the marker move up and down?
    faceCamera = false,  -- Should the marker always face the camera?
    rotate = true,  -- Should the marker rotate?
}

-- Config Standard Marker
Config.Marker = {
    type = 29,  -- https://docs.fivem.net/docs/game-references/markers/
    size = {x = 1.0, y = 1.0, z = 1.0},  -- Marker size
    color = {r = 0, g = 255, b = 0, a = 100},  -- Marker color with transparency (a = alpha)
    bobUpAndDown = false,  -- Should the marker move up and down?
    faceCamera = false,  -- Should the marker always face the camera?
    rotate = true,  -- Should the marker rotate?
}
```


---

# 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://mekez-dev.gitbook.io/mekez-dev/paid-resources/money-wash/configuration.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.
