diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 7e1cb2d..aac741a 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -7,7 +7,7 @@ QBShared.Vehicles = { ['brand'] = 'Maxwell', -- This is the vehicle's brand (Ford, Chevrolet, BMW, Mercedes, etc) ['model'] = 'asbo', -- This must match the spawn code of the vehicle ['price'] = 4000, -- The price that the vehicle sells for - ['category'] = 'compacts', -- This must match "VehicleClass" in vehicles.meta for the vehicle and must also exist in https://docs.fivem.net/natives/?_0x29439776AAA00A62 + ['category'] = 'compacts', -- This must match 'VehicleClass' in vehicles.meta for the vehicle and must also exist in https://docs.fivem.net/natives/?_0x29439776AAA00A62 ['categoryLabel'] = 'Compacts', -- Customize for your Vehicle Shop headings (can even include spaces) ['hash'] = `asbo`, -- This has to match the spawn code of the vehicle and must be surrounded by backticks. Example of a Backtick: ` ['shop'] = 'pdm', -- Can be a single shop or multiple shops. For multiple shops for example {'shopname1','shopname2','shopname3'} @@ -1599,10 +1599,10 @@ QBShared.Vehicles = { ['yosemite3'] = { ['name'] = 'Yosemite Rancher', ['brand'] = 'Declasse', + ['model'] = 'yosemite3', ['price'] = 425000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'yosemite3', ['hash'] = `yosemite3`, ['shop'] = 'pdm', }, @@ -1620,30 +1620,30 @@ QBShared.Vehicles = { ['bfinjection'] = { ['name'] = 'Bf Injection', ['brand'] = 'Annis', + ['model'] = 'bfinjection', ['price'] = 9000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'bfinjection', ['hash'] = `bfinjection`, ['shop'] = 'pdm', }, ['bifta'] = { ['name'] = 'Bifta', ['brand'] = 'Annis', + ['model'] = 'bifta', ['price'] = 15500, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'bifta', ['hash'] = `bifta`, ['shop'] = 'pdm', }, ['blazer'] = { ['name'] = 'Blazer', ['brand'] = 'Annis', + ['model'] = 'blazer', ['price'] = 7500, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'blazer', ['hash'] = `blazer`, ['shop'] = 'pdm', }, @@ -1670,10 +1670,10 @@ QBShared.Vehicles = { ['blazer4'] = { ['name'] = 'Blazer Sport', ['brand'] = 'Annis', + ['model'] = 'blazer4', ['price'] = 9250, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'blazer4', ['hash'] = `blazer4`, ['shop'] = 'pdm', }, @@ -1690,10 +1690,10 @@ QBShared.Vehicles = { ['brawler'] = { ['name'] = 'Brawler', ['brand'] = 'Annis', + ['model'] = 'brawler', ['price'] = 40000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'brawler', ['hash'] = `brawler`, ['shop'] = 'pdm', }, @@ -1720,20 +1720,20 @@ QBShared.Vehicles = { ['dubsta3'] = { ['name'] = 'Dubsta 6x6', ['brand'] = 'Annis', + ['model'] = 'dubsta3', ['price'] = 34000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'dubsta3', ['hash'] = `dubsta3`, ['shop'] = 'pdm', }, ['dune'] = { ['name'] = 'Dune Buggy', ['brand'] = 'Annis', + ['model'] = 'dune', ['price'] = 14000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'dune', ['hash'] = `dune`, ['shop'] = 'pdm', }, @@ -1840,70 +1840,70 @@ QBShared.Vehicles = { ['sandking'] = { ['name'] = 'Sandking XL', ['brand'] = 'Vapid', + ['model'] = 'sandking', ['price'] = 25000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'sandking', ['hash'] = `sandking`, ['shop'] = 'pdm', }, ['sandking2'] = { ['name'] = 'Sandking SWB', ['brand'] = 'Vapid', + ['model'] = 'sandking2', ['price'] = 38000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'sandking2', ['hash'] = `sandking2`, ['shop'] = 'pdm', }, ['trophytruck'] = { ['name'] = 'Trophy Truck', ['brand'] = 'Vapid', + ['model'] = 'trophytruck', ['price'] = 60000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'trophytruck', ['hash'] = `trophytruck`, ['shop'] = 'pdm', }, ['trophytruck2'] = { ['name'] = 'Desert Raid', ['brand'] = 'Vapid', + ['model'] = 'trophytruck2', ['price'] = 80000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'trophytruck2', ['hash'] = `trophytruck2`, ['shop'] = 'pdm', }, ['vagrant'] = { ['name'] = 'Vagrant', ['brand'] = 'Maxwell', + ['model'] = 'vagrant', ['price'] = 50000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'vagrant', ['hash'] = `vagrant`, ['shop'] = 'pdm', }, ['verus'] = { ['name'] = 'Verus', ['brand'] = 'Dinka', + ['model'] = 'verus', ['price'] = 20000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'verus', ['hash'] = `verus`, ['shop'] = 'pdm', }, ['winky'] = { ['name'] = 'Winky', ['brand'] = 'Vapid', + ['model'] = 'winky', ['price'] = 10000, ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'winky', ['hash'] = `winky`, ['shop'] = 'pdm', }, @@ -5083,7 +5083,7 @@ QBShared.Vehicles = { ['model'] = 'hauler', ['price'] = 100000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `hauler`, ['shop'] = 'truck', }, @@ -5093,7 +5093,7 @@ QBShared.Vehicles = { ['model'] = 'packer', ['price'] = 100000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `packer`, ['shop'] = 'truck', }, @@ -5103,7 +5103,7 @@ QBShared.Vehicles = { ['model'] = 'stockade', ['price'] = 100000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `stockade`, ['shop'] = 'truck', }, @@ -5113,7 +5113,7 @@ QBShared.Vehicles = { ['model'] = 'biff', ['price'] = 100000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `biff`, ['shop'] = 'truck', }, @@ -5123,7 +5123,7 @@ QBShared.Vehicles = { ['model'] = 'phantom', ['price'] = 100000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `phantom`, ['shop'] = 'truck', }, @@ -5133,7 +5133,7 @@ QBShared.Vehicles = { ['model'] = 'phantom3', ['price'] = 110000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `phantom3`, ['shop'] = 'truck', }, @@ -5143,7 +5143,7 @@ QBShared.Vehicles = { ['model'] = 'benson', ['price'] = 55000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `benson`, ['shop'] = 'truck', }, @@ -5153,7 +5153,7 @@ QBShared.Vehicles = { ['model'] = 'mule', ['price'] = 40000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `mule`, ['shop'] = 'truck', }, @@ -5163,7 +5163,7 @@ QBShared.Vehicles = { ['model'] = 'mule2', ['price'] = 40000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `mule2`, ['shop'] = 'truck', }, @@ -5173,7 +5173,7 @@ QBShared.Vehicles = { ['model'] = 'mule3', ['price'] = 40000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `mule3`, ['shop'] = 'truck', }, @@ -5183,7 +5183,7 @@ QBShared.Vehicles = { ['model'] = 'mule4', ['price'] = 40000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `mule4`, ['shop'] = 'truck', }, @@ -5193,7 +5193,7 @@ QBShared.Vehicles = { ['model'] = 'mule5', ['price'] = 40000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `mule5`, ['shop'] = 'truck', }, @@ -5203,7 +5203,7 @@ QBShared.Vehicles = { ['model'] = 'pounder', ['price'] = 55000, ['category'] = 'commercial', - ["categoryLabel"] = 'Commercial', + ['categoryLabel'] = 'Commercial', ['hash'] = `pounder`, ['shop'] = 'truck', }, @@ -5213,7 +5213,7 @@ QBShared.Vehicles = { ['model'] = 'boxville', ['price'] = 45000, ['category'] = 'vans', - ["categoryLabel"] = 'Vans', + ['categoryLabel'] = 'Vans', ['hash'] = `boxville`, ['shop'] = 'truck', }, @@ -5223,7 +5223,7 @@ QBShared.Vehicles = { ['model'] = 'boxville2', ['price'] = 45000, ['category'] = 'vans', - ["categoryLabel"] = 'Vans', + ['categoryLabel'] = 'Vans', ['hash'] = `boxville2`, ['shop'] = 'truck', }, @@ -5233,7 +5233,7 @@ QBShared.Vehicles = { ['model'] = 'boxville3', ['price'] = 45000, ['category'] = 'vans', - ["categoryLabel"] = 'Vans', + ['categoryLabel'] = 'Vans', ['hash'] = `boxville3`, ['shop'] = 'truck', }, @@ -5243,7 +5243,7 @@ QBShared.Vehicles = { ['model'] = 'boxville4', ['price'] = 45000, ['category'] = 'vans', - ["categoryLabel"] = 'Vans', + ['categoryLabel'] = 'Vans', ['hash'] = `boxville4`, ['shop'] = 'truck', }, @@ -5253,7 +5253,7 @@ QBShared.Vehicles = { ['model'] = 'boxville5', ['price'] = 45000, ['category'] = 'vans', - ["categoryLabel"] = 'Vans', + ['categoryLabel'] = 'Vans', ['hash'] = `boxville5`, ['shop'] = 'truck', }, @@ -5263,7 +5263,7 @@ QBShared.Vehicles = { ['model'] = 'pony', ['price'] = 45000, ['category'] = 'vans', - ["categoryLabel"] = 'Vans', + ['categoryLabel'] = 'Vans', ['hash'] = `pony`, ['shop'] = 'truck', }, @@ -5273,7 +5273,7 @@ QBShared.Vehicles = { ['model'] = 'pony2', ['price'] = 45000, ['category'] = 'vans', - ["categoryLabel"] = 'Vans', + ['categoryLabel'] = 'Vans', ['hash'] = `pony2`, ['shop'] = 'truck', }, @@ -5283,7 +5283,7 @@ QBShared.Vehicles = { ['model'] = 'taco', ['price'] = 45000, ['category'] = 'vans', - ["categoryLabel"] = 'Food Truck', + ['categoryLabel'] = 'Food Truck', ['hash'] = `taco`, ['shop'] = 'truck', }, @@ -5293,7 +5293,7 @@ QBShared.Vehicles = { ['model'] = 'cutter', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `cutter`, ['shop'] = 'truck', }, @@ -5303,7 +5303,7 @@ QBShared.Vehicles = { ['model'] = 'handler', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `handler`, ['shop'] = 'truck', }, @@ -5313,7 +5313,7 @@ QBShared.Vehicles = { ['model'] = 'bulldozer', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `bulldozer`, ['shop'] = 'truck', }, @@ -5323,7 +5323,7 @@ QBShared.Vehicles = { ['model'] = 'dump', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `dump`, ['shop'] = 'truck', }, @@ -5333,7 +5333,7 @@ QBShared.Vehicles = { ['model'] = 'flatbed', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `flatbed`, ['shop'] = 'truck', }, @@ -5343,7 +5343,7 @@ QBShared.Vehicles = { ['model'] = 'guardian', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `guardian`, ['shop'] = 'truck', }, @@ -5353,7 +5353,7 @@ QBShared.Vehicles = { ['model'] = 'mixer', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `mixer`, ['shop'] = 'truck', }, @@ -5363,7 +5363,7 @@ QBShared.Vehicles = { ['model'] = 'mixer2', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `mixer2`, ['shop'] = 'truck', }, @@ -5373,7 +5373,7 @@ QBShared.Vehicles = { ['model'] = 'rubble', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `rubble`, ['shop'] = 'truck', }, @@ -5383,7 +5383,7 @@ QBShared.Vehicles = { ['model'] = 'tiptruck', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `tiptruck`, ['shop'] = 'truck', }, @@ -5393,7 +5393,7 @@ QBShared.Vehicles = { ['model'] = 'tiptruck2', ['price'] = 30000, ['category'] = 'industrial', - ["categoryLabel"] = 'Industrial', + ['categoryLabel'] = 'Industrial', ['hash'] = `tiptruck2`, ['shop'] = 'truck', }, @@ -5547,4 +5547,4 @@ QBShared.Vehicles = { ['hash'] = `virtue`, ['shop'] = 'luxury', }, -} \ No newline at end of file +}