Configuration

-- | # You can get help from our document: https://thug.gitbook.io/documentation

Config = {}

-- | # Main Settings  ------------------------------------------------------------------------------------

Config.Settings = {
    ['Framework'] = 'standalone', -- | # In this section you have the options 'standalone', 'qb', 'old-qb', 'esx', 'old-esx', 'qbox', 'custom'
    ['SQL'] = 'oxmysql', -- | # In this section you have the options 'oxmysql', 'ghmattimysql', 'mysql-async'
    ['Database_Location'] = 'data/settings.json', -- | # Please do not change this part!
    ['Default_Player_Photo'] = '', -- | # Add a default photo link that will appear if the system cannot access players' steam profile photos or if the player has streamer mode enabled.
    ['Name_Type'] = 'steam', -- | # In this section you have the options 'steam', 'charname'
    ['Report_Keybind'] = 'J', -- | # Players use this keybind to fast report!
    ['Report_Webhook'] = '', -- | # Fast reports are forwarded to this Discord webhook.
    ['Menu_Command'] = 'deathcam', -- | # In this section, you can set the command that players will open the menu.
}

-- | # Blacklist Words  ------------------------------------------------------------------------------------

Config.Blacklist_Words = { -- | # Players cannot use the words you set in this section in kill messages!
    "discord.gg/", 
    "fuck", 
}

Last updated