Page cover

πŸ’ΏInstallation

Discover how to install your script.

β€’ STEP 1: DEPENDENCIES

Make sure you have this resources installed in your server!

  1. Support ESX or QB-CORE

β€’ STEP 2: INSTALL SQL

Install the SQL files in the [Installation] folder.

Vehicles Categories:

CREATE TABLE IF NOT EXISTS `biyei_hvehicleshop_category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `shop` varchar(50) DEFAULT NULL,
  `name` varchar(50) DEFAULT NULL,
  `label` varchar(50) DEFAULT NULL,
  `model` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;


INSERT INTO `biyei_hvehicleshop_category` (`id`, `shop`, `name`, `label`, `model`) VALUES
	(1, 'pdm_main_1', 'sedans', 'Sedans', 'asea'),
	(2, 'pdm_main_1', 'sport', 'Sport', 't20'),
	(3, 'pdm_main_1', 'coupes', 'Coupes', 'cogcabrio'),
	(4, 'pdm_main_1', 'muscle', 'Muscle', 'blade'),
	(5, 'pdm_main_1', 'offroad', 'Offroad', 'bifta'),
	(6, 'pdm_main_1', 'vans', 'Vans', 'bison'),
	(7, 'pdm_main_1', 'suvs', 'SUVS', 'baller'),
	(8, 'pdm_main_1', 'motorcycles', 'Motorcycles', 'akuma'),
	(12, 'boat_main_1', 'boats', 'Boats', 'jetmax'),
	(13, 'plane_main_1', 'planes', 'Planes', 'alphaz1'),
	(14, 'heli_main_1', 'helicopters', 'Helicopter', 'frogger');

Vehicles List:

β€’ STEP 3: START ORDER

Ensure the resources in this order.

Last updated