SecurGate
  • ☔Get Started
    • ⚙️Installation
  • ❌Errors
    • ⛔Auto Configs Errors
  • 📃Docs
    • 🤖Auto Configs
    • 💧Client side configurations
      • 💙Anti Godmod
      • 🔫Anti Give Weapon
    • ⌨️Commands
Powered by GitBook
On this page
  • 🔨 HAVING PROBLEMS ?
  • 1) For GiveWeapon Detection :
  • 2) For Trigger Server Events :
  • 3) For Trigger Client Events :
  • 4) For GodMod Detection :
  1. Errors

Auto Configs Errors

Setting up our auto config

🔨 HAVING PROBLEMS ?

1) For GiveWeapon Detection :

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

cl_config.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"],
    },
}

2) For Trigger Server Events :

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

cl_config.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,
            },
        },
    },
}

3) For Trigger Client Events :

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

cl_config.lua
SecurGate_CL.AutoConfig = {
    TriggerProtection = {
        Client_Events ={
            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"],
            },
        },
    },
}

4) For GodMod Detection :

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

cl_config.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"],
    },
}
PreviousErrorsNextAuto Configs

Last updated 10 months ago

❌
⛔