Step 4

Database

Do not start the resource without first having installed the complete database, if you start the resource in the database, you will get critical errors

Gangwars database
CREATE TABLE `gang_areas` (
    `owner` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
    `area` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
    PRIMARY KEY (area) USING BTREE
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;

INSERT INTO `items` (`name`, `label`, `weight`) VALUES
	('flare_airdrop', 'Airdrop Flare', 1),
	('cannabis', 'Weed', 1),
	('cocaine', 'Cocaine', 1),
	('meth', 'Meth', 1)
;

Last updated