Thug Studios
TEBEXYOUTUBEDISCORD
  • ๐Ÿ“„Welcome
  • INFORMATION
    • ๐Ÿ“งFind Transaction ID
    • ๐Ÿ“ฆTebex Script Integration
    • ๐Ÿ”‘CFX Auth System
    • ๐Ÿ”“Escrow/Open Source
    • ๐Ÿ”—Get Steam Api Key
    • ๐ŸงพGet Player License
  • SCRIPTS
    • ๐Ÿ’›RP Series
      • ๐Ÿ“ฆThug Crafting
        • Installation
        • Shared/settings.lua
        • Shared/crafting_items.lua
        • Shared/levels.lua
        • Shared/locale.lua
        • Shared/notify.lua
        • Shared/debug.lua
      • ๐Ÿ“ฆThug Dispatch
        • Installation
        • Shared/settings.lua
        • Shared/alerts.lua
        • Shared/zones.lua
        • Shared/weapons.lua
        • Shared/locale.lua
        • Shared/notify.lua
        • Client/no_escrow.lua
        • Server/no_escrow.lua
      • ๐Ÿ“ฆThug RPS
        • Installation
        • Configuration
        • Translate
        • Server/no_escrow.lua
      • ๐Ÿ“ฆThug Keyword
        • Installation
        • Configuration
        • Translate
        • Server/no_escrow.lua
      • ๐Ÿ“ฆThug Hour Prizes
        • Installation
        • Configuration
        • No_Escrow
        • Ready Notify.lua
      • ๐Ÿ“ฆThug Anti Mods
        • Installation
        • Configuration
        • Translate
        • Ready Notify.lua
    • ๐Ÿ’šPVP Series
      • ๐Ÿ“ฆThug PVP Hud V3
        • Installation
        • Configuration
        • Translate
        • Shared/weapons.lua
        • Shared/zones.lua
        • Client/no_escrow.lua
        • Server/no_escrow.lua
      • ๐Ÿ“ฆThug Deathcam
        • Installation
        • Configuration
        • Translate
        • Ready Notify.lua
        • Shared/weapons.lua
        • Client/no_escrow.lua
        • Server/no_escrow.lua
      • ๐Ÿ“ฆThug Killfeed V2
        • Installation
        • Configuration
        • Translate
        • Shared/weapons.lua
        • Client/no_escrow.lua
        • Server/no_escrow.lua
      • ๐Ÿ“ฆThug Kill Shows
        • Installation
        • Configuration
        • Translate
        • Client/no_escrow.lua
Powered by GitBook
On this page
  1. SCRIPTS
  2. RP Series
  3. Thug Crafting

Shared/settings.lua

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

Config = {}

Config.Settings = {
    ['Framework'] = "qb", -- | # In this section you have the options 'qb', 'old-qb', 'esx', 'old-esx'
    ['Inventory'] = "ox_inventory", -- | # In this section you have the options 'qb-inventory', 'esx_inventory', 'ox_inventory', 'qs-inventory', 'codem-inventory', 'tgiann-inventory', 'core_inventory', 'origen_inventory', 'ps-inventory'
    ['Players_Database_Location'] = 'data/players.json', -- | # Please do not change this part!
    ['Tables_Database_Location'] = 'data/tables.json', -- | # Please do not change this part!
    ['Item_Images_Location'] = 'https://cfx-nui-ox_inventory/web/images/', -- | # In this section, specify the file path where the icons of the items are located.
    ['Fail_If_Mistake'] = false, -- | # If you set this option to true, the craft will fail in case of a wrong item combination!
    ['Using_Target'] = false, -- | # If you set this option to false, DrawText is disabled and the script works with Target.
    ['Target_Script'] = "qb", -- | # In this section you have the options 'qb', 'ox'
    ['Debug'] = true -- | # If you set this option to true, you can see the script progress in the console.
}

Config.Table_Settings = {
    ['Spawn_Type'] = "Command", -- | # In this section you have the options 'Item', 'Command'
    ['Item_Name'] = "crafting_table", -- | # If Spawn_Type is set to Item, specify the Crafting Table item name here!
    ['Command'] = "create_craftingtable", -- | # If Spawn_Type is set as an Command, you can specify here the command to be used to create a Crafting Table.
    ['Allowed_Licences_for_Command'] = { -- | # If you do not know how to learn your License, visit https://thug.gitbook.io/documentation/information/get-player-license
        "",
    },
}
PreviousInstallationNextShared/crafting_items.lua

Last updated 5 days ago

๐Ÿ’›
๐Ÿ“ฆ