# Config

```lua
Config = {}
Config.WashStations = {}

Config.Notify = "ox" -- "okok" / "ox"
Config.HelpText = "ox" -- "ox" / "okok"
Config.Debug = true -- Enable some prints on console?
Config.LiterPrice = 2.55 -- Price per liter of water

Config.adminRanks = { -- Ranks have perimssion to create carwash
   'superadmin',
   'admin',
   'moderator',
}

-- Upgrades
Config.CompanyUpgrades = {
    lv2 = 20000, -- Amount of money needed in company to upgrade to level 2
    lv3 = 35000, -- Amount of money needed in company to upgrade to level 3
}

-- Get Water Settings
Config.GetWater = {
    maxCapacity = {
        lv1 = 500, -- Maximum water capacity at level 1
        lv2 = 1000, -- Maximum water capacity at level 2
        lv3 = 1500, -- Maximum water capacity at level 3
    },
}
```


---

# 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://mscripts.gitbook.io/docs/esx/general/esx-car-wash/config.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.
