# Configuration

### Available Targets System

```lua
'ox_target', 'qb_target' or 'custom'
```

### CarLift System

{% tabs %}
{% tab title="Enable/Disable" %}
Inside the config.lua, replace from:

```lua
enableCarLift = true,
```

To:

```lua
enableCarLift = false,
```

{% endtab %}

{% tab title="Edit WL Jobs" %}
Inside the config.lua, add/remove the jobs inside Job array:

```lua
Job = 'unemployed',
```

To allow everyone to use the Car Lifts, keep:

```lua
Job = 'unemployed',
```

{% endtab %}
{% endtabs %}

### Notify System

```lua
Notify = function(text, status) -- Client side
    BeginTextCommandThefeedPost("STRING")
    AddTextComponentSubstringPlayerName(text)
    EndTextCommandThefeedPostTicker(true, true)
end,

HelpTextNotify = function(text) -- Client side
    AddTextEntry("HELP_SIT", text)
    DisplayHelpTextThisFrame("HELP_SIT", 0, false, 1)
end
```
