Configuration
Last updated
Last updated
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..."
},
}