> For the complete documentation index, see [llms.txt](https://securgate.gitbook.io/securgate/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://securgate.gitbook.io/securgate/errors/auto-configs-errors.md).

# Auto Configs Errors

## 🔨 HAVING PROBLEMS ?

### 1) For GiveWeapon Detection :

Whitelist your resources who have conflict with our auto config on : **`config/cl_config.lua`**

{% code title="cl\_config.lua" %}

```lua
SecurGate_CL.AutoConfig = {
    WL_Resources_GiveWeapons = {
        ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR GIVEWEAPON PROTECTION"],
        ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR GIVEWEAPON PROTECTION"],
        ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR GIVEWEAPON PROTECTION"],
    },
}
```

{% endcode %}

### 2) For Trigger Server Events :&#x20;

Whitelist your triggers who have conflict with our auto config on : **`config/cl_config.lua`**

{% code title="cl\_config.lua" %}

```lua
SecurGate_CL.AutoConfig = {
    TriggerProtection = {
        Server_Events = { 
            Ignore_Events = { -- Put your trigger who have conflict with our protection (triggers who make falses bans)
                ["__cfx_internal:commandFallback"] = true,
                ["vSync:requestSync"] = true,
                ["_chat:messageEntered"] = true,
            },
        },
    },
}
```

{% endcode %}

### 3) For Trigger Client Events :&#x20;

Whitelist your resources who have conflict with our auto config on : **`config/cl_config.lua`**

<pre class="language-lua" data-title="cl_config.lua"><code class="lang-lua">SecurGate_CL.AutoConfig = {
    TriggerProtection = {
<strong>        Client_Events ={
</strong>            WL_Resources_ClientEvents = {
                ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR CLIENT EVENTS PROTECTION"],
                ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR CLIENT EVENTS PROTECTION"],
                ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR CLIENT EVENTS PROTECTION"],
            },
        },
    },
}
</code></pre>

### 4) For GodMod Detection :&#x20;

Whitelist your resources who have conflict with our auto config on : **`config/cl_config.lua`**

{% code title="cl\_config.lua" %}

```lua
SecurGate_CL.AutoConfig = {
    WL_Resources_Entities = {
        ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR ENTITIES PROTECTION"],
        ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR ENTITIES PROTECTION"],
        ["RESOURCE NAME WHO HAVE CONFLICT WITH OUR ENTITIES PROTECTION"],
    },
}
```

{% endcode %}
