๐ ๏ธCreating a Crafting Table
๐ Option 1: Pre-Defined Crafting Tables
โ
When to Use:
๐ง Step-by-Step: Pre-Defined Table Setup
Config.PreSetTables = {["Table_BlackMarket"] = {
Label = "Black Market Bench", -- UI name
BenchProp = "gr_prop_gr_bench_02a", -- Prop model
BenchCoords = vector4(135.76, -1048.23, 29.37, 180.0), -- World location
Groups = { "lostmc" }, -- Job/gang access (optional)
CitizenID = { "ABCD1234" }, -- Specific player access (optional)
["Items"] = {
["weapon_pistol"] = {
Label = "Pistol",
DefaultQuantity = 1,
XPEnable = true,
Level = 2,
xpGain = 5,
UseBlueprint = true,
BlueprintItem = "blueprint_pistol",
ShowOnList = false,
RemoveBlueprint = false,
ConsumeDurability = 0,
["Material"] = {
["steel"] = { Label = "Steel", amount = 3 },
["rubber"] = { Label = "Rubber", amount = 2 }
},
["Prop"] = {
model = "w_pi_pistol",
offset = vector3(1.3, 0.0, -0.3),
rotation = vector3(0, 0, 0)
}
}
}
}๐ Customize the Table:
Field
Description
๐ Option 2: Placeable Crafting Tables
โ
When to Use:
๐ง Step-by-Step: Placeable Table Setup
๐ Customize the Table:
Field
Description
๐ Optional: Set Table Duration
๐ง Best Practices & Tips
Last updated