Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

Script [ESX] DNZ DRUGS Labor

ploziumm

Member
Joined
Sep 27, 2022
Messages
4
Reaction score
0
Points
146
Location
Germany
Eig nt schwer die selber zu machen aber hier:

DROP TABLE IF EXISTS `labor_produktion`;

CREATE TABLE `labor_produktion` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`item` VARCHAR(50) NOT NULL, -- coke, meth
`job` VARCHAR(50) NOT NULL, -- society job (z.B. ballas, vagos etc.)
`time` INT(11) NOT NULL DEFAULT 0, -- Restzeit bis Fertigstellung in Sekunden
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- ============================================================
-- NUR ZUM TESTEN! Damit setzt du dem Job ballas nämlich das koks labor
-- ============================================================
INSERT INTO `labor_produktion` (`item`, `job`, `time`) VALUES
('coke', 'ballas', 60);

-- ============================================================
-- (Nur falls noch nicht vorhanden!)
-- ============================================================


CREATE TABLE IF NOT EXISTS `addon_inventory` (
`name` VARCHAR(100) NOT NULL,
`label` VARCHAR(100) NOT NULL,
`shared` TINYINT(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;


CREATE TABLE IF NOT EXISTS `addon_inventory_items` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`inventory_name` VARCHAR(100) NOT NULL,
`name` VARCHAR(100) NOT NULL,
`count` INT(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;


INSERT IGNORE INTO `addon_inventory` (`name`, `label`, `shared`) VALUES
('society_ballas', 'Ballas Lager', 1),
('society_vagos', 'Vagos Lager', 1);
 
Top