# Configuration

## Config

Complete config.lua

***

### Basics

#### Language

```lua
Config.Language = 'en'
```

| Value | Description |
| ----- | ----------- |
| `en`  | English     |
| `de`  | German      |

### AppName

```lua
Config.AppName = { 'VARIX', 'BILLING' } 
```

<table><thead><tr><th>Function</th><th>Description</th></tr></thead><tbody><tr><td><pre class="language-lua"><code class="lang-lua">'VARIX'
</code></pre></td><td><em><strong>LEFT</strong></em></td></tr><tr><td><pre class="language-lua"><code class="lang-lua">'BILLING' 
</code></pre></td><td><em><strong>RIGHT</strong></em></td></tr></tbody></table>

### Colors

```lua
Config.AccentFrom = '#fffefe'  
Config.AccentTo   = '#ffffff'
```

{% hint style="info" %}
Keybinds your find at <https://htmlcolorcodes.com/color-picker/>
{% endhint %}

### Interact

```lua
Config.Command  = 'billing'
Config.Keybind  = 'F7'
Config.NearbyRadius = 15.0
```

### Admin

```lua
Config.AdminGroups = { 'admin', 'superadmin' }
```

### SocietyJobs

```lua
Config.SocietyJobs = {
    ['police']     = { minGrade = 3, templateGrade = 4, label = 'Police' },
    ['ambulance']  = { minGrade = 2, templateGrade = 11, label = 'EMS' },
    ['mechanic']   = { minGrade = 2, templateGrade = 2, label = 'Mechanic' },
    ['lawyer']     = { minGrade = 1, templateGrade = 1, label = 'Lawyer' },
    ['taxi']       = { minGrade = 1, templateGrade = 1, label = 'Taxi' },
    ['realestate'] = { minGrade = 1, templateGrade = 1, label = 'Real Estate' },
}

-- Global fallback minimum rank for templates
-- (used if templateGrade is not set in the job)
Config.TemplateMinGrade = 16
```

### NearbyRadius

```lua
Config.NearbyRadius = 15.0
```

### Banking

```lua
Config.Banking = 'wasabi' 
```

| Option   | Link                                            |
| -------- | ----------------------------------------------- |
| `wasabi` | <https://www.wasabiscripts.com/product/6782544> |
| `okok`   | <https://okok.tebex.io/package/7145077>         |
| `crm`    | <https://corem.tebex.io/package/6488919>        |

### SocietyMethod

```lua
Config.SocietyMethod = 'esx_society'
```

<details>

<summary>Options</summary>

* esx\_society
* mysql

</details>

### Prefix and Currency

```lua
Config.InvoicePrefix = 'VC'
Config.CurrencySymbol = '$'
```


---

# 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://varixcode.gitbook.io/varixcode/varixcode-series/vlrixcode-billing/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.
