🛠️Installation
Items Installation
["prop_gazebo_01"] = { label = "Gazebo", weight = 50, stack = false, close = true, description = "", client = { image = "prop_gazebo_01.png" }, },
["prop_gazebo_02"] = { label = "Gazebo", weight = 50, stack = false, close = true, description = "", client = { image = "prop_gazebo_02.png" }, },
["prop_skid_tent_03"] = { label = "Tent", weight = 50, stack = false, close = true, description = "", client = { image = "prop_skid_tent_03.png" }, },
["prop_skid_tent_cloth"] = { label = "Tent", weight = 50, stack = false, close = true, description = "", client = { image = "prop_skid_tent_cloth.png" }, },
["prop_table_03b"] = { label = "Table", weight = 50, stack = false, close = true, description = "", client = { image = "prop_table_03b.png" }, },
["prop_chair_08"] = { label = "Chair", weight = 50, stack = false, close = true, description = "", client = { image = "prop_chair_08.png" }, },
["prop_beach_fire"] = { label = "Bonfire", weight = 50, stack = false, close = true, description = "", client = { image = "prop_beach_fire.png" }, },
["prop_weed_tub_01b"] = { label = "Box", weight = 50, stack = false, close = true, description = "", client = { image = "prop_weed_tub_01b.png" }, },
["grilled_burger_meat"] = { label = "Grilled Burger", weight = 50, stack = true, close = true, description = "", client = { image = "grilled_burger_meat.png" }, },
["grilled_meat"] = { label = "Grilled Meat", weight = 50, stack = true, close = true, description = "", client = { image = "grilled_meat.png" }, },
["grilled_fish"] = { label = "Grilled Fish", weight = 50, stack = true, close = true, description = "", client = { image = "grilled_fish.png" }, },
["grilled_bacon_eggs"] = { label = "Grilled Bacon & Eggs", weight = 50, stack = true, close = true, description = "", client = { image = "grilled_bacon_eggs.png" }, },
["raw_burger"] = { label = "Raw Burger", weight = 50, stack = true, close = true, description = "", client = { image = "raw_burger.png" }, },
["raw_meat"] = { label = "Raw Meat", weight = 50, stack = true, close = true, description = "", client = { image = "raw_meat.png" }, },
["raw_fish"] = { label = "Raw Fish", weight = 50, stack = true, close = true, description = "", client = { image = "raw_fish.png" }, },
["bacon_pieces"] = { label = "Bacon Pieces", weight = 50, stack = true, close = true, description = "", client = { image = "bacon_pieces.png" }, },
["cowhide"] = { label = "Cow Hide", weight = 50, stack = true, close = true, description = "", client = { image = "cowhide.png" }, },
["milk"] = { label = "Milk", weight = 50, stack = true, close = true, description = "", client = { image = "milk.png" }, },Database Installation
Before you install this database code, you have on option on config.lua to run this automatic.
CREATE TABLE IF NOT EXISTS `m_camping` (
`id` varchar(255) NOT NULL,
`owner_id` varchar(50) NOT NULL DEFAULT '',
`coords` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`coords`)),
`prop_name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;Last updated