๐งฑPlaceable Crafting Tables Guideled
๐ ๏ธ What Are Placeable Tables?
Config.PlaceableTables๐ง How to Add a Placeable Table
Config.PlaceableTables = {
["table_weapon"] = { -- Item name used to place this table
Label = "Weapon Crafting Table",
BenchProp = "gr_prop_gr_bench_02a",
["Items"] = {
["WEAPON_PISTOL"] = {
Label = "Pistol",
DefaultQuantity = 1,
XPEnable = true,
Level = 1,
xpGain = 3,
UseBlueprint = true,
ShowOnList = false,
RemoveBlueprint = true,
BlueprintItem = "blueprint_pistol",
ConsumeDurability = 0,
["Material"] = {
["rubber"] = { Label = "Rubber", amount = 1 },
},
["Prop"] = {
model = "w_pi_pistol",
offset = vector3(1.3, 0.0, -0.3),
rotation = vector3(0, 0, 0)
}
}
}
}
}๐งพ Step-by-Step Setup
1๏ธโฃ Create the Placeable Item
2๏ธโฃ Set the Table Label and Model
3๏ธโฃ Assign Craftable Items
4๏ธโฃ Configure Table Lifespan
๐ฎ How Players Use It
๐ง Tips
Last updated