
Documentation
This section lists all available commands, exports, and events included in the script. You’ll find client-side, server-side, and shared functions designed to help developers integrate, extend, or interact with the system easily within their own scripts or frameworks.
["pine_wood"] = {
["name"] = "pine_wood",
["label"] = "Pine wood",
["weight"] = 250,
["type"] = "item",
["image"] = "pine_wood.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A strong piece of pine wood."
},
["pine_resin"] = {
["name"] = "pine_resin",
["label"] = "Pine resin",
["weight"] = 150,
["type"] = "item",
["image"] = "pine_resin.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Sticky resin extracted from pine trees."
},
["wood_shavings"] = {
["name"] = "wood_shavings",
["label"] = "Wood Shavings",
["weight"] = 100,
["type"] = "item",
["image"] = "wood_shavings.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fine shavings from wood carving."
},
["oak_wood"] = {
["name"] = "oak_wood",
["label"] = "Oak wood",
["weight"] = 250,
["type"] = "item",
["image"] = "oak_wood.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A dense and durable oak wood log."
},
["oak_bark"] = {
["name"] = "oak_bark",
["label"] = "Oak Bark",
["weight"] = 150,
["type"] = "item",
["image"] = "oak_bark.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Thick bark from an oak tree."
},
["arcorn"] = {
["name"] = "arcorn",
["label"] = "Arcorn",
["weight"] = 100,
["type"] = "item",
["image"] = "arcorn.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A small arcorn, seed of the oak."
},
["maple_wood"] = {
["name"] = "maple_wood",
["label"] = "Maple wood",
["weight"] = 250,
["type"] = "item",
["image"] = "maple_wood.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A smooth and solid maple wood log."
},
["strong_fiber"] = {
["name"] = "strong_fiber",
["label"] = "Strong fiber",
["weight"] = 150,
["type"] = "item",
["image"] = "strong_fiber.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Durable natural fiber from tree bark."
},
["maple_syrup_extract"] = {
["name"] = "maple_syrup_extract",
["label"] = "Maple syrup extract",
["weight"] = 100,
["type"] = "item",
["image"] = "maple_syrup_extract.png",
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Thick extract used to make maple syrup."
}INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('pine_wood', 'Pine wood', 1, 0, 1),
('pine_resin', 'Pine resin', 1, 0, 1),
('wood_shavings', 'Wood Shavings', 1, 0, 1),
('oak_wood', 'Oak wood', 1, 0, 1),
('oak_bark', 'Oak Bark', 1, 0, 1),
('arcorn', 'Arcorn', 1, 0, 1),
('maple_wood', 'Maple wood', 1, 0, 1),
('strong_fiber', 'Strong fiber', 1, 0, 1),
('maple_syrup_extract', 'Maple syrup extract', 1, 0, 1)
;["pine_wood"] = { name = "pine_wood", label = "Pine wood", weight = 250, type = "item", image = "pine_wood.png", unique = false, useable = false, shouldClose = true, description = "A strong piece of pine wood." },
["pine_resin"] = { name = "pine_resin", label = "Pine resin", weight = 150, type = "item", image = "pine_resin.png", unique = false, useable = false, shouldClose = true, description = "Sticky resin extracted from pine trees." },
["wood_shavings"] = { name = "wood_shavings", label = "Wood Shavings", weight = 100, type = "item", image = "wood_shavings.png", unique = false, useable = false, shouldClose = true, description = "Fine shavings from wood carving." },
["oak_wood"] = { name = "oak_wood", label = "Oak wood", weight = 250, type = "item", image = "oak_wood.png", unique = false, useable = false, shouldClose = true, description = "A dense and durable oak wood log." },
["oak_bark"] = { name = "oak_bark", label = "Oak Bark", weight = 150, type = "item", image = "oak_bark.png", unique = false, useable = false, shouldClose = true, description = "Thick bark from an oak tree." },
["arcorn"] = { name = "arcorn", label = "Arcorn", weight = 100, type = "item", image = "arcorn.png", unique = false, useable = false, shouldClose = true, description = "A small arcorn, seed of the oak." },
["maple_wood"] = { name = "maple_wood", label = "Maple wood", weight = 250, type = "item", image = "maple_wood.png", unique = false, useable = false, shouldClose = true, description = "A smooth and solid maple wood log." },
["strong_fiber"] = { name = "strong_fiber", label = "Strong fiber", weight = 150, type = "item", image = "strong_fiber.png", unique = false, useable = false, shouldClose = true, description = "Durable natural fiber from tree bark." },
["maple_syrup_extract"] = { name = "maple_syrup_extract", label = "Maple syrup extract", weight = 100, type = "item", image = "maple_syrup_extract.png", unique = false, useable = false, shouldClose = true, description = "Thick extract used to make maple syrup." },['axe_rusty'] = {
label = 'Rusty Axe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-lumberjack.toggleAxe'
},
server = {
export = 'qs-lumberjack.axe'
},
},
['axe_iron'] = {
label = 'Iron-Edged Axe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-lumberjack.toggleAxe'
},
server = {
export = 'qs-lumberjack.axe'
},
},
['axe_mythical'] = {
label = 'Mythical Axe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-lumberjack.toggleAxe'
},
server = {
export = 'qs-lumberjack.axe'
},
},