Configuration
-- | # You can get help from our document: https://thug.gitbook.io/documentation
Config = {}
-- # Main Settings ------------------------------------------------------------------------------------
Config.Settings = {
['Name_Type'] = 'steam', -- | # In this section you have the options 'steam', 'charname'
['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'
['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.
['Default_Settings'] = true, -- | # If you make this side false, killfeed will be turned off for the first players to enter the server and they will need to turn it on.
['Database_Location'] = 'data/settings.json', -- | # Please do not change this part!
['Menu_Command'] = 'killfeed', -- | # In this section, you can set the command that players will access the menu.
}
-- | # You can add or remove any font here.
-- | # -- | # After adding the font with the .ttf extension to the html/fonts file, go to html/main.css and import the font you want like I did with the other fonts. Then enter the name you imported in the ID section and set a Label.
Config.Fonts = {
{Id = 'roboto', Label = 'Roboto'},
{Id = 'oswald', Label = 'Oswald'},
{Id = 'kanit', Label = 'Kanit'},
{Id = 'gilroy', Label = 'Gilroy'},
{Id = 'bebas', Label = 'Bebas'},
{Id = 'chakra', Label = 'Chakra'},
{Id = 'satisfy', Label = 'Satisfy'},
{Id = 'permanent', Label = 'Permanent'},
}
-- | # You can add or remove any color here. Simply enter an ID and the color code.
Config.Colors = {
{Id = 'white', Color = 'FFFFFF'},
{Id = 'gray', Color = 'A0A0A0'},
{Id = 'lightred', Color = 'FF6666'},
{Id = 'red', Color = 'FF0000'},
{Id = 'darkred', Color = '990000'},
{Id = 'yellow', Color = 'FFFF33'},
{Id = 'lightorange', Color = 'FFB266'},
{Id = 'orange', Color = 'FF8000'},
{Id = 'lightblue', Color = '99CCFF'},
{Id = 'blue', Color = '0066CC'},
{Id = 'darkblue', Color = '0000FF'},
{Id = 'aqua', Color = '33FFFF'},
{Id = 'cyan', Color = '009999'},
{Id = 'lightgreen', Color = '99FFCC'},
{Id = 'green', Color = '00FF00'},
{Id = 'purple', Color = '7F00FF'},
{Id = 'pink', Color = 'FF00FF'},
{Id = 'black', Color = '000000'},
}
Last updated