mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 01:08:57 +00:00
Update vehicles.lua
added commercial vehicles to the lua.
This commit is contained in:
@@ -5088,6 +5088,336 @@ QBShared.Vehicles = {
|
||||
['hash'] = `weevil2`,
|
||||
['shop'] = 'pdm',
|
||||
},
|
||||
['hauler'] = {
|
||||
['name'] = 'Hauler',
|
||||
['brand'] = 'Jobuilt',
|
||||
['model'] = 'hauler',
|
||||
['price'] = 100000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `Hauler`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['packer'] = {
|
||||
['name'] = 'Packer',
|
||||
['brand'] = 'MTL',
|
||||
['model'] = 'packer',
|
||||
['price'] = 100000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `packer`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['stockade'] = {
|
||||
['name'] = 'stockade',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'stockade',
|
||||
['price'] = 100000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `stockade`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['biff'] = {
|
||||
['name'] = 'biff',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'biff',
|
||||
['price'] = 100000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `biff`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['phantom'] = {
|
||||
['name'] = 'Phantom',
|
||||
['brand'] = 'Jobuilt',
|
||||
['model'] = 'phantom',
|
||||
['price'] = 100000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `Phantom`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['phantom3'] = {
|
||||
['name'] = 'Phantom Custom',
|
||||
['brand'] = 'Jobuilt',
|
||||
['model'] = 'phantom3',
|
||||
['price'] = 110000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `Phantom Custom`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['benson'] = {
|
||||
['name'] = 'Benson',
|
||||
['brand'] = 'Vapid',
|
||||
['model'] = 'benson',
|
||||
['price'] = 55000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `benson`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['mule'] = {
|
||||
['name'] = 'Mule',
|
||||
['brand'] = 'Maibatsu',
|
||||
['model'] = 'mule',
|
||||
['price'] = 40000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `mule`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['mule2'] = {
|
||||
['name'] = 'Mule with Drop Door',
|
||||
['brand'] = 'Maibatsu',
|
||||
['model'] = 'mule2',
|
||||
['price'] = 40000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `mule2`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['mule3'] = {
|
||||
['name'] = 'Mule with Swinging Doors',
|
||||
['brand'] = 'Maibatsu',
|
||||
['model'] = 'mule3',
|
||||
['price'] = 40000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `mule3`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['mule4'] = {
|
||||
['name'] = 'Mule with Swinging Doors & Side Step',
|
||||
['brand'] = 'Maibatsu',
|
||||
['model'] = 'mule4',
|
||||
['price'] = 40000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `mule4`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['mule5'] = {
|
||||
['name'] = 'Mule with Swinging Doors & Step Bumper',
|
||||
['brand'] = 'Maibatsu',
|
||||
['model'] = 'mule5',
|
||||
['price'] = 40000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `mule5`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['pounder'] = {
|
||||
['name'] = 'Pounder',
|
||||
['brand'] = 'MTL',
|
||||
['model'] = 'pounder',
|
||||
['price'] = 55000,
|
||||
['category'] = 'commercial',
|
||||
["categoryLabel"] = 'Commercial',
|
||||
['hash'] = `pounder`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['boxville'] = {
|
||||
['name'] = 'Boxville',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'boxville',
|
||||
['price'] = 45000,
|
||||
['category'] = 'vans',
|
||||
["categoryLabel"] = 'Vans',
|
||||
['hash'] = `boxville`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['boxville2'] = {
|
||||
['name'] = 'Boxville2',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'boxville2',
|
||||
['price'] = 45000,
|
||||
['category'] = 'vans',
|
||||
["categoryLabel"] = 'Vans',
|
||||
['hash'] = `boxville2`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['boxville3'] = {
|
||||
['name'] = 'Boxville3',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'boxville3',
|
||||
['price'] = 45000,
|
||||
['category'] = 'vans',
|
||||
["categoryLabel"] = 'Vans',
|
||||
['hash'] = `boxville3`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['boxville4'] = {
|
||||
['name'] = 'Boxville4',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'boxville4',
|
||||
['price'] = 45000,
|
||||
['category'] = 'vans',
|
||||
["categoryLabel"] = 'Vans',
|
||||
['hash'] = `boxville4`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['boxville5'] = {
|
||||
['name'] = 'Armored Boxville',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'boxville5',
|
||||
['price'] = 45000,
|
||||
['category'] = 'vans',
|
||||
["categoryLabel"] = 'Vans',
|
||||
['hash'] = `boxville4`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['pony'] = {
|
||||
['name'] = 'Pony',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'pony',
|
||||
['price'] = 45000,
|
||||
['category'] = 'vans',
|
||||
["categoryLabel"] = 'Vans',
|
||||
['hash'] = `pony`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['pony2'] = {
|
||||
['name'] = 'Pony 2',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'pony2',
|
||||
['price'] = 45000,
|
||||
['category'] = 'vans',
|
||||
["categoryLabel"] = 'Vans',
|
||||
['hash'] = `pony2`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['taco'] = {
|
||||
['name'] = 'Taco Truck',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'taco',
|
||||
['price'] = 45000,
|
||||
['category'] = 'vans',
|
||||
["categoryLabel"] = 'Food Truck',
|
||||
['hash'] = `taco`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['cutter'] = {
|
||||
['name'] = 'cutter',
|
||||
['brand'] = 'HVY',
|
||||
['model'] = 'cutter',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `cutter`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['handler'] = {
|
||||
['name'] = 'Dock Handler',
|
||||
['brand'] = 'HVY',
|
||||
['model'] = 'handler',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `handler`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['bulldoze'] = {
|
||||
['name'] = 'Bulldozer',
|
||||
['brand'] = 'HVY',
|
||||
['model'] = 'bulldoze',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `bulldoze`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['dump'] = {
|
||||
['name'] = 'HVY Dump Truck (Off Road)',
|
||||
['brand'] = 'HVY',
|
||||
['model'] = 'dump',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `dump`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['flatbed'] = {
|
||||
['name'] = 'Flatbed Truck',
|
||||
['brand'] = 'MTL',
|
||||
['model'] = 'flatbed',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `flatbed`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['flatbed'] = {
|
||||
['name'] = 'Flatbed Truck',
|
||||
['brand'] = 'MTL',
|
||||
['model'] = 'flatbed',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `flatbed`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['guardian'] = {
|
||||
['name'] = 'Guardian',
|
||||
['brand'] = 'Vapid',
|
||||
['model'] = 'guardian',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `guardian`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['mixer'] = {
|
||||
['name'] = 'Cement Mixer',
|
||||
['brand'] = 'HVY',
|
||||
['model'] = 'mixer',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `mixer`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['mixer2'] = {
|
||||
['name'] = 'Mixer2',
|
||||
['brand'] = 'HVY',
|
||||
['model'] = 'mixer2',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `mixer2`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['rubble'] = {
|
||||
['name'] = 'Jobuilt Dump Truck (Street Legal)',
|
||||
['brand'] = 'Jobuilt',
|
||||
['model'] = 'rubble',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `rubble`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['tiptruck'] = {
|
||||
['name'] = 'Brute Dump Truck (Street Legal)',
|
||||
['brand'] = 'Brute',
|
||||
['model'] = 'tiptruck',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `tiptruck`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
['tiptruck2'] = {
|
||||
['name'] = 'MTL Dump Truck (Street Legal)',
|
||||
['brand'] = 'MTL',
|
||||
['model'] = 'tiptruck2',
|
||||
['price'] = 30000,
|
||||
['category'] = 'industrial',
|
||||
["categoryLabel"] = 'Industrial',
|
||||
['hash'] = `tiptruck2`,
|
||||
['shop'] = 'truck',
|
||||
},
|
||||
}
|
||||
|
||||
for _, v in pairs(QBShared.Vehicles) do
|
||||
|
||||
Reference in New Issue
Block a user