Installation

1. Download Resource
2. Download Dependencies
3. Insert table in DB
4. Start Resource
Last updated

Last updated
INSERT INTO `items` (`item`, `label`, `limit`, `can_remove`, `type`, `usable`, `id`, `groupId`, `metadata`, `desc`, `degradation`, `weight`) VALUES
-- Small Knife
('small_knife', 'Small Knife', 10, 1, 'item_standard', 1, 378, 1, '{}', 'Usefull to grind stuff.', 0, 0.25),
-- Marijuana
('weed', 'Marijuana', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A really good herb.', 0, 0.25),
-- Dried Marijuana
('dried_weed', 'Dried Marijuana', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A really good herb.', 0, 0.25),
-- Grinded Marijuana
('grinded_weed', 'Grinded Marijuana', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A really good herb.', 0, 0.25),
-- Poppy
('poppy', 'Poppy', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A really good plant.', 0, 0.25),
-- Smashed Poppy
('smashed_poppy', 'Smashed Poppy', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A really good plant.', 0, 0.25),
-- Smashed Poppy
('liquid_opium', 'Liquid Opium', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A nice drug.', 0, 0.25),
-- Poppy Seeds
('poppy_seeds', 'Poppy Seeds', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A nice flower to plant.', 0, 0.25),
-- Coca Leaf
('coca', 'Coca Leaf', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A really good plant.', 0, 0.25),
-- Dried Coca
('dried_coca', 'Dried Coca', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A really good plant.', 0, 0.25),
-- Refined Coca
('refined_coca', 'Refined Coca', 10, 1, 'item_standard', 1, 378, 1, '{}', 'A really good plant.', 0, 0.25),CREATE TABLE IF NOT EXISTS dexdrugs_async (
zone_id VARCHAR(50) PRIMARY KEY,
finish_time INT NOT NULL,
input_item VARCHAR(50) NOT NULL,
input_amount INT NOT NULL,
output_item VARCHAR(50) NOT NULL,
output_amount INT NOT NULL
);ensure vorp_core # Example, here is your framework
ensure vorp_inventory # Example, dependencies
ensure vorp_progressbar
ensure prop_weed # Make sure it starts before Dex Drugs
# Dex Resources
ensure Dex_Drugs