Configuration

Config = {}

Config.Admin_Settings = { 
    ['Control_Test_Command'] = true, -- | # Through this command, administrators can test the control.
    ['Set_Admin_Command'] = 'setadmin', -- | # Through this command, the head admin in Set_Admin_Allow_License can give permission to other admins.
    ['Set_Admin_Allow_License'] = '', -- | # You must enter the head admin's licence here.
    ['Admin_Database_Location'] = 'data/admins.json', -- | # Don't touch this part!
    ['Send_Control_Command'] = 'sendcontrol', -- | # With this command, admins can send suspicious players for checking again.
}

Config.Control_Settings = {
    ['Default_Bucket'] = 0, -- | # You can set the default bucket from this section.
    ['Control_Failed_Kick'] = true, -- | # Set this part to true if you want this player to be kicked from the server if a malicious mod is caught during mod checking.
    ['Do_You_Use_Extra_Inventory'] = 'ox_inventory', -- | # You can use this part as "quasar_inventory" or "ox_inventory". If you are using an inventory other than these, set this part to false.
    ['Do_You_Use_Holster_Duration'] = 1000, -- | # This option is for servers using holster animation. If your server does not have holster animation, you can set this section to 1000.
    ['Damage_Booster_Control_Weapons'] = { Weapon = 'WEAPON_G19', Default_Damage = 38 }, -- | # In this section you must select the weapon to be used in damage boost control. For the control to work correctly, you must set the damage part correctly according to the body damage.
}

Config.Extra_Protections = {
    ['Anti_Silent_Aim'] = { Enabled = true, Log = true, Kick = false },
    ['Anti_Fire_Rate'] = { Enabled = true, Log = true, Kick = false },
    ['Anti_Infinity_Stamina'] = { Enabled = true, Log = true, Kick = false },
    ['Anti_Infinity_Oxygen'] = { Enabled = true, Log = true, Kick = false },
    ['Anti_Fast_Get_Off_Vehicle'] = { Enabled = true, Log = true, Kick = false },
    ['Anti_Fast_Reload'] = { Enabled = true, Log = true, Kick = false }
}

Config.Log_Settings = {
    ['Control_Succesfuly_Log'] = "", -- | # The webhook where the log of the players who passed the control successfully will be sent.
    ['Control_Failed_Log'] = "", -- | # The webhook to send the log of players who failed the control.
    ['Extra_Protections_Log'] = "", -- | # The webhook to send the log of players caught with extra protections other than control.
}

Last updated