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


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 YOUR VEHICLESHOP -- [example...]
2
ensure qs-garages

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
Garages database
1
CREATE TABLE `owned_vehicles` (
2
`owner` varchar(255) COLLATE utf8mb4_bin NOT NULL,
3
`plate` varchar(12) COLLATE utf8mb4_bin NOT NULL,
4
`vehicle` longtext COLLATE utf8mb4_bin DEFAULT NULL,
5
`model` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
6
`type` varchar(20) COLLATE utf8mb4_bin NOT NULL DEFAULT 'car',
7
`stored` tinyint(1) NOT NULL DEFAULT 0,
8
`lasthouse` int(11) DEFAULT 0,
9
`garage` varchar(200) COLLATE DEFAULT 'Central Parking',
10
`fuel` int(11) DEFAULT 100,
11
`engine` float DEFAULT 1000,
12
`body` float DEFAULT 1000,
13
`bodyDamage` text COLLATE utf8mb4_bin DEFAULT NULL,
14
`state` int(11) DEFAULT 0,
15
`job` VARCHAR(50) DEFAULT NULL
16
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
Last modified 2mo ago