Installations

Remember that this resource has verified DMCA protection, and its illegal use or distribution could imply a claim for protection of Title 17 of Chapter 512 (c) (3) of the Digital Millennium Copyright Act

STEP 1 - Dependencies

It is important to use the dependencies that are indicated in this step, do not use others, otherwise you will receive critical errors
Quasar Gangwars only has three dependencies, download them by clicking on the following buttons

STEP 2 - Start order

It is important to put the resources in the correct order, below es_extened but above the other scripts
In order for the resource to start correctly and not receive any errors, we must start the resources in the following order
1
ensure meta_libs
2
ensure progressbar
3
ensure qs-gangwars

STEP 3 - 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
1
CREATE TABLE `gang_areas` (
2
`owner` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
3
`area` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
4
PRIMARY KEY (area) USING BTREE
5
)
6
COLLATE='utf8mb4_general_ci'
7
ENGINE=InnoDB
8
;
9
10
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
11
('flare_airdrop', 'Airdrop Flare', 1),
12
('cannabis', 'Weed', 1),
13
('cocaine', 'Cocaine', 1),
14
('meth', 'Meth', 1)
15
;