Installation
This script is designed to work seamlessly with ESX and QBCore/QBOX frameworks. The configuration is the same for all frameworks and requires no additional steps.
Insert SQL
You can use the built-in Config.AutoRunSQL feature included in the script to automatically set up the database, or you can copy the provided SQL code and run it manually on your database.
CREATE TABLE `bz_hud_vehicles` (
`plate` VARCHAR(255) NOT NULL COLLATE 'utf8_general_ci',
`mileage` INT(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`plate`) USING BTREE
) COLLATE='utf8_general_ci';
Last updated