DexLab Scripts
DexLab Scripts
  • 🧪About Us
  • 💎Dex Collectibles
    • User Guide
      • Features
    • Installation
    • Configuration
    • Common Errors
  • 🗺️Dex Map Markers
    • User Guide
      • Features
    • Installation
    • Configuration
    • Common Errors
  • 🪚Dex Inventory Craft
    • User Guide
      • Features
    • Installation
    • Configuration
    • Common Errors
  • 💊Dex Drugs
    • User Guide
      • Features
    • Installation
    • Configuration
    • Common Errors
Powered by GitBook
On this page
  1. Dex Inventory Craft

Configuration

PreviousInstallationNextCommon Errors

Last updated 2 days ago


Config Preview: v1.0

Config = {}

Config.webhook = {
    url = "", -- Discord webhook
    title = "Inventory Craft",  
}

Config.Lang = "PT" -- PT,EN ... languages

Config.itens = {
     --[[

        example for more items
        item3 = {
            itemusavel = "cobre", -- Item that the player need to click on to start crafting
            itemaretirar = {"saco", 1, "cobre", 50}, -- Items that the player need to craft the full recipe
            itensadevolver = {"sacomineriocobre", 1, "agulha", 5}, -- Item/s that the player will receive when crafting is complete and quantity | Item, Quantity, Item, Quantity
            tempodeproducao = 6000 -- Time for the crafting to finish
            progressbar = "A ensacar cobre..." -- Progress bar text
        }

    ]]
    item1 = {
        itemusavel = {"minerio_cobre"},
        itemaretirar = {"saco", 1, "minerio_cobre", 50}, 
        itensadevolver = {"sacomineriocobre", 1, "agulha", 5}, 
        tempodeproducao = 5000, 
        progressbar = "A ensacar Minério de cobre..."
    },
    item2 = {
        itemusavel = {"minerio_ouro"},
        itemaretirar = {"saco", 1, "ouro", 50},
        itensadevolver = {"sacominerioouro", 1},
        tempodeproducao = 5000,
        progressbar = "A ensacar Minério de ouro..."
    },
}
🪚