From 8386143cd730a4fbc83f5fbc4b1cd5430392fda8 Mon Sep 17 00:00:00 2001 From: KamuiKody <62488881+KamuiKody@users.noreply.github.com> Date: Sun, 4 Sep 2022 22:51:27 -0400 Subject: [PATCH 01/22] Framework Optimization for optimization of other resources. --- client/events.lua | 12 ++++++++++++ server/events.lua | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) diff --git a/client/events.lua b/client/events.lua index b183bfb..2e00992 100644 --- a/client/events.lua +++ b/client/events.lua @@ -117,6 +117,18 @@ RegisterNetEvent('QBCore:Command:GoToMarker', function() end) -- Vehicle Commands +RegisterNetEvent('QBCore:Client:VehicleInfo', function(info) + local data = { + vehicle = NetToVeh(info.netid), + seat = info.seat, + name = info.modelName, + plate = QBCore.Functions.GetPlate(info.vehicle), + driver = GetPedInVehicleSeat(info.vehicle, -1), + inseat = GetPedInVehicleSeat(info.vehicle, info.seat), + haskeys = exports['qb-vehiclekeys']:HasKeys(plate) + } + TriggerEvent('QBCore:Client:'..info.event..'Vehicle', data) +end) RegisterNetEvent('QBCore:Command:SpawnVehicle', function(vehName) local ped = PlayerPedId() diff --git a/server/events.lua b/server/events.lua index 06876ce..9083c63 100644 --- a/server/events.lua +++ b/server/events.lua @@ -165,6 +165,50 @@ RegisterNetEvent('QBCore:ToggleDuty', function() TriggerClientEvent('QBCore:Client:SetDuty', src, Player.PlayerData.job.onduty) end) +-- BaseEvents + +-- Vehicles +RegisterServerEvent('baseevents:enteringVehicle', function(veh,seat,modelName,netid) + local src = source + local data = { + vehicle = veh, + seat = seat, + name = modelName, + netid = netid, + event = 'Entering' + } + TriggerClientEvent('QBCore:Client:VehicleInfo', src, data) +end) + +RegisterServerEvent('baseevents:enteredVehicle', function(veh,seat,modelName,netid) + local src = source + local data = { + vehicle = veh, + seat = seat, + name = modelName, + netid = netid, + event = 'Entered' + } + TriggerClientEvent('QBCore:Client:VehicleInfo', src, data) +end) + +RegisterServerEvent('baseevents:enteringAborted', function() + local src = source + TriggerClientEvent('QBCore:Client:AbortVehicleEntering', src) +end) + +RegisterServerEvent('baseevents:leftVehicle', function(veh,seat,modelName,netid) + local src = source + local data = { + vehicle = veh, + seat = seat, + name = modelName, + netid = netid, + event = 'Left' + } + TriggerClientEvent('QBCore:Client:VehicleInfo', src, data) +end) + -- Items -- This event is exploitable and should not be used. It has been deprecated, and will be removed soon. From ade0652ee2edc7aff241e244aa4a62145d6f24f5 Mon Sep 17 00:00:00 2001 From: KamuiKody <62488881+KamuiKody@users.noreply.github.com> Date: Sun, 4 Sep 2022 23:05:02 -0400 Subject: [PATCH 02/22] fix variable --- client/events.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/events.lua b/client/events.lua index 2e00992..b4f91d0 100644 --- a/client/events.lua +++ b/client/events.lua @@ -118,11 +118,12 @@ end) -- Vehicle Commands RegisterNetEvent('QBCore:Client:VehicleInfo', function(info) + local plate = QBCore.Functions.GetPlate(info.vehicle) local data = { vehicle = NetToVeh(info.netid), seat = info.seat, name = info.modelName, - plate = QBCore.Functions.GetPlate(info.vehicle), + plate = plate, driver = GetPedInVehicleSeat(info.vehicle, -1), inseat = GetPedInVehicleSeat(info.vehicle, info.seat), haskeys = exports['qb-vehiclekeys']:HasKeys(plate) From f0e9a4248aedd0040f2eb57674b47d15a753d498 Mon Sep 17 00:00:00 2001 From: r0adra93 Date: Sat, 10 Sep 2022 14:22:28 -0400 Subject: [PATCH 03/22] test for multi stores test for multi stores --- shared/vehicles.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 89c8f83..c7b6c9f 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -10,7 +10,7 @@ QBShared.Vehicles = { ['price'] = 4000, ['category'] = 'compacts', ['hash'] = `asbo`, - ['shop'] = 'pdm', + ['shop'] = {'pdm','luxury'}, }, ['blista'] = { ['name'] = 'Blista', From 67ef3741b719d1b479e47854acf977896cf0c5e6 Mon Sep 17 00:00:00 2001 From: David Malchin Date: Sun, 18 Sep 2022 04:05:38 +0300 Subject: [PATCH 04/22] Add clearer messages and handle database errors on player connecting --- locale/en.lua | 2 ++ server/events.lua | 66 +++++++++++++++++++++++++++++++---------------- 2 files changed, 46 insertions(+), 22 deletions(-) diff --git a/locale/en.lua b/locale/en.lua index a41748e..a8b4a5a 100644 --- a/locale/en.lua +++ b/locale/en.lua @@ -17,6 +17,8 @@ local Translations = { no_permission = 'You don\'t have permissions for this..', no_waypoint = 'No Waypoint Set.', tp_error = 'Error While Teleporting.', + connecting_database_error = 'A database error occurred while connecting to the server. (Is the SQL server on?)', + connecting_database_timeout = 'Connection to database timed out. (Is the SQL server on?)', }, success = { server_opened = 'The server has been opened', diff --git a/server/events.lua b/server/events.lua index 06876ce..406fe98 100644 --- a/server/events.lua +++ b/server/events.lua @@ -34,8 +34,6 @@ local function onPlayerConnecting(name, _, deferrals) end end - deferrals.update(string.format(Lang:t('info.checking_ban'), name)) - for _, v in pairs(identifiers) do if string.find(v, 'license') then license = v @@ -43,30 +41,54 @@ local function onPlayerConnecting(name, _, deferrals) end end - -- Mandatory wait - Wait(2500) - - deferrals.update(string.format(Lang:t('info.checking_whitelisted'), name)) - - local isBanned, Reason = QBCore.Functions.IsPlayerBanned(src) - local isLicenseAlreadyInUse = QBCore.Functions.IsLicenseInUse(license) - local isWhitelist, whitelisted = QBCore.Config.Server.Whitelist, QBCore.Functions.IsWhitelisted(src) - - Wait(2500) - - deferrals.update(string.format(Lang:t('info.join_server'), name)) - if not license then - deferrals.done(Lang:t('error.no_valid_license')) - elseif isBanned then - deferrals.done(Reason) - elseif isLicenseAlreadyInUse and QBCore.Config.Server.CheckDuplicateLicense then + deferrals.done(Lang:t('error.no_valid_license')) + elseif QBCore.Config.Server.CheckDuplicateLicense and QBCore.Functions.IsLicenseInUse(license) then deferrals.done(Lang:t('error.duplicate_license')) - elseif isWhitelist and not whitelisted then - deferrals.done(Lang:t('error.not_whitelisted')) end - deferrals.done() + local databaseTime = os.clock() + local databasePromise = promise.new() + + CreateThread(function() + deferrals.update(string.format(Lang:t('info.checking_ban'), name)) + local databaseSuccess, databaseError = pcall(function() + local isBanned, Reason = QBCore.Functions.IsPlayerBanned(src) + if isBanned then + deferrals.done(Reason) + end + end) + + if QBCore.Config.Server.Whitelist then + deferrals.update(string.format(Lang:t('info.checking_whitelisted'), name)) + databaseSuccess, databaseError = pcall(function() + if not QBCore.Functions.IsWhitelisted(src) then + deferrals.done(Lang:t('error.not_whitelisted')) + end + end) + end + + if not databaseSuccess then + databasePromise:reject(databaseError) + end + databasePromise:resolve() + end) + + databasePromise:next(function() + deferrals.update(string.format(Lang:t('info.join_server'), name)) + deferrals.done() + end, function (databaseError) + deferrals.done(Lang:t('error.connecting_database_error')) + print('^1' .. databaseError) + end) + + while databasePromise.state == 0 do -- while database promise is pending + if os.clock() - databaseTime > 30 then -- if 30 seconds were spent waiting for the database + deferrals.done(Lang:t('error.connecting_database_timeout')) + break + end + Wait(1000) + end -- Add any additional defferals you may need! end From 15b2e7136cbe6d6a65bc6baeef1039b92add1dd1 Mon Sep 17 00:00:00 2001 From: r0adra93 Date: Thu, 6 Oct 2022 02:18:22 -0400 Subject: [PATCH 05/22] added categoryLabel to shared/vehicles.lua Added categoryLabel to shared/vehicles.lua table. --- shared/vehicles.lua | 507 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 507 insertions(+) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index c7b6c9f..8981953 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -9,6 +9,7 @@ QBShared.Vehicles = { ['model'] = 'asbo', ['price'] = 4000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `asbo`, ['shop'] = {'pdm','luxury'}, }, @@ -18,6 +19,7 @@ QBShared.Vehicles = { ['model'] = 'blista', ['price'] = 13000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `blista`, ['shop'] = 'pdm', }, @@ -27,6 +29,7 @@ QBShared.Vehicles = { ['model'] = 'brioso', ['price'] = 20000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `brioso`, ['shop'] = 'pdm', }, @@ -36,6 +39,7 @@ QBShared.Vehicles = { ['model'] = 'club', ['price'] = 8000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `club`, ['shop'] = 'pdm', }, @@ -45,6 +49,7 @@ QBShared.Vehicles = { ['model'] = 'dilettante', ['price'] = 9000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `dilettante`, ['shop'] = 'pdm', }, @@ -54,6 +59,7 @@ QBShared.Vehicles = { ['model'] = 'dilettante2', ['price'] = 12000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `dilettante2`, ['shop'] = 'pdm', }, @@ -63,6 +69,7 @@ QBShared.Vehicles = { ['model'] = 'kanjo', ['price'] = 12000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `kanjo`, ['shop'] = 'pdm', }, @@ -72,6 +79,7 @@ QBShared.Vehicles = { ['model'] = 'issi2', ['price'] = 7000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `issi2`, ['shop'] = 'pdm', }, @@ -81,6 +89,7 @@ QBShared.Vehicles = { ['model'] = 'issi3', ['price'] = 5000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `issi3`, ['shop'] = 'pdm', }, @@ -90,6 +99,7 @@ QBShared.Vehicles = { ['model'] = 'issi4', ['price'] = 80000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `issi4`, ['shop'] = 'pdm', }, @@ -99,6 +109,7 @@ QBShared.Vehicles = { ['model'] = 'issi5', ['price'] = 80000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `issi5`, ['shop'] = 'pdm', }, @@ -108,6 +119,7 @@ QBShared.Vehicles = { ['model'] = 'issi6', ['price'] = 80000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `issi6`, ['shop'] = 'pdm', }, @@ -117,6 +129,7 @@ QBShared.Vehicles = { ['model'] = 'panto', ['price'] = 3200, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `panto`, ['shop'] = 'pdm', }, @@ -126,6 +139,7 @@ QBShared.Vehicles = { ['model'] = 'prairie', ['price'] = 30000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `prairie`, ['shop'] = 'pdm', }, @@ -135,6 +149,7 @@ QBShared.Vehicles = { ['model'] = 'rhapsody', ['price'] = 10000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `rhapsody`, ['shop'] = 'pdm', }, @@ -144,6 +159,7 @@ QBShared.Vehicles = { ['model'] = 'brioso2', ['price'] = 12000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `brioso2`, ['shop'] = 'pdm', }, @@ -153,6 +169,7 @@ QBShared.Vehicles = { ['model'] = 'weevil', ['price'] = 9000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `weevil`, ['shop'] = 'pdm', }, @@ -163,6 +180,7 @@ QBShared.Vehicles = { ['model'] = 'cogcabrio', ['price'] = 30000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `cogcabrio`, ['shop'] = 'pdm', }, @@ -172,6 +190,7 @@ QBShared.Vehicles = { ['model'] = 'exemplar', ['price'] = 40000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `exemplar`, ['shop'] = 'pdm', }, @@ -181,6 +200,7 @@ QBShared.Vehicles = { ['model'] = 'f620', ['price'] = 32500, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `f620`, ['shop'] = 'pdm', }, @@ -190,6 +210,7 @@ QBShared.Vehicles = { ['model'] = 'felon', ['price'] = 31000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `felon`, ['shop'] = 'pdm', }, @@ -199,6 +220,7 @@ QBShared.Vehicles = { ['model'] = 'felon2', ['price'] = 37000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `felon2`, ['shop'] = 'pdm', }, @@ -208,6 +230,7 @@ QBShared.Vehicles = { ['model'] = 'jackal', ['price'] = 19000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `jackal`, ['shop'] = 'pdm', }, @@ -217,6 +240,7 @@ QBShared.Vehicles = { ['model'] = 'oracle', ['price'] = 22000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `oracle`, ['shop'] = 'pdm', }, @@ -226,6 +250,7 @@ QBShared.Vehicles = { ['model'] = 'oracle2', ['price'] = 28000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `oracle2`, ['shop'] = 'pdm', }, @@ -235,6 +260,7 @@ QBShared.Vehicles = { ['model'] = 'sentinel', ['price'] = 30000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `sentinel`, ['shop'] = 'pdm', }, @@ -244,6 +270,7 @@ QBShared.Vehicles = { ['model'] = 'sentinel2', ['price'] = 33000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `sentinel2`, ['shop'] = 'pdm', }, @@ -253,6 +280,7 @@ QBShared.Vehicles = { ['model'] = 'windsor', ['price'] = 27000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `windsor`, ['shop'] = 'pdm', }, @@ -262,6 +290,7 @@ QBShared.Vehicles = { ['model'] = 'windsor2', ['price'] = 34000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `windsor2`, ['shop'] = 'pdm', }, @@ -271,6 +300,7 @@ QBShared.Vehicles = { ['model'] = 'zion', ['price'] = 22000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `zion`, ['shop'] = 'pdm', }, @@ -280,6 +310,7 @@ QBShared.Vehicles = { ['model'] = 'zion2', ['price'] = 28000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `zion2`, ['shop'] = 'pdm', }, @@ -289,6 +320,7 @@ QBShared.Vehicles = { ['model'] = 'previon', ['price'] = 149000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `previon`, ['shop'] = 'pdm', }, @@ -298,6 +330,7 @@ QBShared.Vehicles = { ['model'] = 'champion', ['price'] = 205000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `champion`, ['shop'] = 'pdm', }, @@ -307,6 +340,7 @@ QBShared.Vehicles = { ['model'] = 'ignus', ['price'] = 1120000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `ignus`, ['shop'] = 'pdm', }, @@ -316,6 +350,7 @@ QBShared.Vehicles = { ['model'] = 'zeno', ['price'] = 1350000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `zeno`, ['shop'] = 'pdm', }, @@ -326,6 +361,7 @@ QBShared.Vehicles = { ['model'] = 'bmx', ['price'] = 160, ['category'] = 'cycles', + ['categoryLabel'] = 'cycles', ['hash'] = `bmx`, ['shop'] = 'pdm', }, @@ -335,6 +371,7 @@ QBShared.Vehicles = { ['model'] = 'cruiser', ['price'] = 510, ['category'] = 'cycles', + ['categoryLabel'] = 'cycles', ['hash'] = `cruiser`, ['shop'] = 'pdm', }, @@ -344,6 +381,7 @@ QBShared.Vehicles = { ['model'] = 'fixter', ['price'] = 225, ['category'] = 'cycles', + ['categoryLabel'] = 'cycles', ['hash'] = `fixter`, ['shop'] = 'pdm', }, @@ -353,6 +391,7 @@ QBShared.Vehicles = { ['model'] = 'scorcher', ['price'] = 280, ['category'] = 'cycles', + ['categoryLabel'] = 'cycles', ['hash'] = `scorcher`, ['shop'] = 'pdm', }, @@ -362,6 +401,7 @@ QBShared.Vehicles = { ['model'] = 'tribike', ['price'] = 500, ['category'] = 'cycles', + ['categoryLabel'] = 'cycles', ['hash'] = `tribike`, ['shop'] = 'pdm', }, @@ -371,6 +411,7 @@ QBShared.Vehicles = { ['model'] = 'tribike2', ['price'] = 700, ['category'] = 'cycles', + ['categoryLabel'] = 'cycles', ['hash'] = `tribike2`, ['shop'] = 'pdm', }, @@ -380,6 +421,7 @@ QBShared.Vehicles = { ['model'] = 'tribike3', ['price'] = 520, ['category'] = 'cycles', + ['categoryLabel'] = 'cycles', ['hash'] = `tribike3`, ['shop'] = 'pdm', }, @@ -390,6 +432,7 @@ QBShared.Vehicles = { ['model'] = 'akuma', ['price'] = 55000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `akuma`, ['shop'] = 'pdm', }, @@ -399,6 +442,7 @@ QBShared.Vehicles = { ['model'] = 'avarus', ['price'] = 20000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `avarus`, ['shop'] = 'pdm', }, @@ -408,6 +452,7 @@ QBShared.Vehicles = { ['model'] = 'bagger', ['price'] = 13500, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `bagger`, ['shop'] = 'pdm', }, @@ -417,6 +462,7 @@ QBShared.Vehicles = { ['model'] = 'bati', ['price'] = 24000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `bati`, ['shop'] = 'pdm', }, @@ -426,6 +472,7 @@ QBShared.Vehicles = { ['model'] = 'bati2', ['price'] = 19000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `bati2`, ['shop'] = 'pdm', }, @@ -435,6 +482,7 @@ QBShared.Vehicles = { ['model'] = 'bf400', ['price'] = 22000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `bf400`, ['shop'] = 'pdm', }, @@ -444,6 +492,7 @@ QBShared.Vehicles = { ['model'] = 'carbonrs', ['price'] = 22000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `carbonrs`, ['shop'] = 'pdm', }, @@ -453,6 +502,7 @@ QBShared.Vehicles = { ['model'] = 'chimera', ['price'] = 21000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `chimera`, ['shop'] = 'pdm', }, @@ -462,6 +512,7 @@ QBShared.Vehicles = { ['model'] = 'cliffhanger', ['price'] = 28500, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `cliffhanger`, ['shop'] = 'pdm', }, @@ -471,6 +522,7 @@ QBShared.Vehicles = { ['model'] = 'daemon', ['price'] = 14000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `daemon`, ['shop'] = 'pdm', }, @@ -480,6 +532,7 @@ QBShared.Vehicles = { ['model'] = 'daemon2', ['price'] = 23000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `daemon2`, ['shop'] = 'pdm', }, @@ -489,6 +542,7 @@ QBShared.Vehicles = { ['model'] = 'defiler', ['price'] = 30000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `defiler`, ['shop'] = 'pdm', }, @@ -498,6 +552,7 @@ QBShared.Vehicles = { ['model'] = 'deathbike', ['price'] = 30000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `deathbike`, ['shop'] = 'pdm', }, @@ -507,6 +562,7 @@ QBShared.Vehicles = { ['model'] = 'deathbike2', ['price'] = 30000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `deathbike2`, ['shop'] = 'pdm', }, @@ -516,6 +572,7 @@ QBShared.Vehicles = { ['model'] = 'deathbike3', ['price'] = 30000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `deathbike3`, ['shop'] = 'pdm', }, @@ -525,6 +582,7 @@ QBShared.Vehicles = { ['model'] = 'diablous', ['price'] = 30000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `diablous`, ['shop'] = 'pdm', }, @@ -534,6 +592,7 @@ QBShared.Vehicles = { ['model'] = 'diablous2', ['price'] = 38000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `diablous2`, ['shop'] = 'pdm', }, @@ -543,6 +602,7 @@ QBShared.Vehicles = { ['model'] = 'double', ['price'] = 28000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `double`, ['shop'] = 'pdm', }, @@ -552,6 +612,7 @@ QBShared.Vehicles = { ['model'] = 'enduro', ['price'] = 5500, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `enduro`, ['shop'] = 'pdm', }, @@ -561,6 +622,7 @@ QBShared.Vehicles = { ['model'] = 'esskey', ['price'] = 12000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `esskey`, ['shop'] = 'pdm', }, @@ -570,6 +632,7 @@ QBShared.Vehicles = { ['model'] = 'faggio', ['price'] = 2000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `faggio`, ['shop'] = 'pdm', }, @@ -579,6 +642,7 @@ QBShared.Vehicles = { ['model'] = 'faggio2', ['price'] = 1900, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `faggio2`, ['shop'] = 'pdm', }, @@ -588,6 +652,7 @@ QBShared.Vehicles = { ['model'] = 'faggio3', ['price'] = 2500, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `faggio3`, ['shop'] = 'pdm', }, @@ -597,6 +662,7 @@ QBShared.Vehicles = { ['model'] = 'fcr', ['price'] = 5000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `fcr`, ['shop'] = 'pdm', }, @@ -606,6 +672,7 @@ QBShared.Vehicles = { ['model'] = 'fcr2', ['price'] = 19000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `fcr2`, ['shop'] = 'pdm', }, @@ -615,6 +682,7 @@ QBShared.Vehicles = { ['model'] = 'gargoyle', ['price'] = 32000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `gargoyle`, ['shop'] = 'pdm', }, @@ -624,6 +692,7 @@ QBShared.Vehicles = { ['model'] = 'hakuchou', ['price'] = 17000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `hakuchou`, ['shop'] = 'pdm', }, @@ -633,6 +702,7 @@ QBShared.Vehicles = { ['model'] = 'hakuchou2', ['price'] = 45000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `hakuchou2`, ['shop'] = 'pdm', }, @@ -642,6 +712,7 @@ QBShared.Vehicles = { ['model'] = 'hexer', ['price'] = 16000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `hexer`, ['shop'] = 'pdm', }, @@ -651,6 +722,7 @@ QBShared.Vehicles = { ['model'] = 'innovation', ['price'] = 33500, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `innovation`, ['shop'] = 'pdm', }, @@ -660,6 +732,7 @@ QBShared.Vehicles = { ['model'] = 'lectro', ['price'] = 28000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `lectro`, ['shop'] = 'pdm', }, @@ -669,6 +742,7 @@ QBShared.Vehicles = { ['model'] = 'manchez', ['price'] = 8300, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `manchez`, ['shop'] = 'pdm', }, @@ -678,6 +752,7 @@ QBShared.Vehicles = { ['model'] = 'nemesis', ['price'] = 20000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `nemesis`, ['shop'] = 'pdm', }, @@ -687,6 +762,7 @@ QBShared.Vehicles = { ['model'] = 'nightblade', ['price'] = 23000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `nightblade`, ['shop'] = 'pdm', }, @@ -696,6 +772,7 @@ QBShared.Vehicles = { ['model'] = 'oppressor', ['price'] = 9999999, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `oppressor`, ['shop'] = 'luxury', }, @@ -705,6 +782,7 @@ QBShared.Vehicles = { ['model'] = 'pcj', ['price'] = 15000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `pcj`, ['shop'] = 'pdm', }, @@ -714,6 +792,7 @@ QBShared.Vehicles = { ['model'] = 'ratbike', ['price'] = 3000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `ratbike`, ['shop'] = 'pdm', }, @@ -723,6 +802,7 @@ QBShared.Vehicles = { ['model'] = 'ruffian', ['price'] = 25000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `ruffian`, ['shop'] = 'pdm', }, @@ -732,6 +812,7 @@ QBShared.Vehicles = { ['model'] = 'sanchez', ['price'] = 5300, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `sanchez`, ['shop'] = 'pdm', }, @@ -741,6 +822,7 @@ QBShared.Vehicles = { ['model'] = 'sanchez2', ['price'] = 5300, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `sanchez2`, ['shop'] = 'pdm', }, @@ -750,6 +832,7 @@ QBShared.Vehicles = { ['model'] = 'sanctus', ['price'] = 35000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `sanctus`, ['shop'] = 'pdm', }, @@ -759,6 +842,7 @@ QBShared.Vehicles = { ['model'] = 'shotaro', ['price'] = 320000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `shotaro`, ['shop'] = 'pdm', }, @@ -768,6 +852,7 @@ QBShared.Vehicles = { ['model'] = 'sovereign', ['price'] = 8000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `sovereign`, ['shop'] = 'pdm', }, @@ -777,6 +862,7 @@ QBShared.Vehicles = { ['model'] = 'stryder', ['price'] = 50000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `stryder`, ['shop'] = 'pdm', }, @@ -786,6 +872,7 @@ QBShared.Vehicles = { ['model'] = 'thrust', ['price'] = 22000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `thrust`, ['shop'] = 'pdm', }, @@ -795,6 +882,7 @@ QBShared.Vehicles = { ['model'] = 'vader', ['price'] = 7200, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `vader`, ['shop'] = 'pdm', }, @@ -804,6 +892,7 @@ QBShared.Vehicles = { ['model'] = 'vindicator', ['price'] = 19000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `vindicator`, ['shop'] = 'pdm', }, @@ -813,6 +902,7 @@ QBShared.Vehicles = { ['model'] = 'vortex', ['price'] = 31000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `vortex`, ['shop'] = 'pdm', }, @@ -822,6 +912,7 @@ QBShared.Vehicles = { ['model'] = 'wolfsbane', ['price'] = 14000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `wolfsbane`, ['shop'] = 'pdm', }, @@ -831,6 +922,7 @@ QBShared.Vehicles = { ['model'] = 'zombiea', ['price'] = 28000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `zombiea`, ['shop'] = 'pdm', }, @@ -840,6 +932,7 @@ QBShared.Vehicles = { ['model'] = 'zombieb', ['price'] = 27000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `zombieb`, ['shop'] = 'pdm', }, @@ -849,6 +942,7 @@ QBShared.Vehicles = { ['model'] = 'manchez2', ['price'] = 14000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `manchez2`, ['shop'] = 'pdm', }, @@ -858,6 +952,7 @@ QBShared.Vehicles = { ['model'] = 'shinobi', ['price'] = 25000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `shinobi`, ['shop'] = 'pdm', }, @@ -867,6 +962,7 @@ QBShared.Vehicles = { ['model'] = 'reever', ['price'] = 25000, ['category'] = 'motorcycles', + ['categoryLabel'] = 'motorcycles', ['hash'] = `reever`, ['shop'] = 'pdm', }, @@ -877,6 +973,7 @@ QBShared.Vehicles = { ['model'] = 'blade', ['price'] = 23500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `blade`, ['shop'] = 'pdm', }, @@ -886,6 +983,7 @@ QBShared.Vehicles = { ['model'] = 'buccaneer', ['price'] = 22500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `buccaneer`, ['shop'] = 'pdm', }, @@ -895,6 +993,7 @@ QBShared.Vehicles = { ['model'] = 'buccaneer2', ['price'] = 24500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `buccaneer2`, ['shop'] = 'pdm', }, @@ -904,6 +1003,7 @@ QBShared.Vehicles = { ['model'] = 'chino', ['price'] = 5000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `chino`, ['shop'] = 'pdm', }, @@ -913,6 +1013,7 @@ QBShared.Vehicles = { ['model'] = 'chino2', ['price'] = 8000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `chino2`, ['shop'] = 'pdm', }, @@ -922,6 +1023,7 @@ QBShared.Vehicles = { ['model'] = 'clique', ['price'] = 20000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `clique`, ['shop'] = 'pdm', }, @@ -931,6 +1033,7 @@ QBShared.Vehicles = { ['model'] = 'coquette3', ['price'] = 180000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `coquette3`, ['shop'] = 'pdm', }, @@ -940,6 +1043,7 @@ QBShared.Vehicles = { ['model'] = 'deviant', ['price'] = 70000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `deviant`, ['shop'] = 'pdm', }, @@ -949,6 +1053,7 @@ QBShared.Vehicles = { ['model'] = 'dominator', ['price'] = 62500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dominator`, ['shop'] = 'pdm', }, @@ -958,6 +1063,7 @@ QBShared.Vehicles = { ['model'] = 'dominator2', ['price'] = 50000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dominator2`, ['shop'] = 'pdm', }, @@ -967,6 +1073,7 @@ QBShared.Vehicles = { ['model'] = 'dominator3', ['price'] = 70000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dominator3`, ['shop'] = 'pdm', }, @@ -976,6 +1083,7 @@ QBShared.Vehicles = { ['model'] = 'dominator4', ['price'] = 200000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dominator4`, ['shop'] = 'pdm', }, @@ -985,6 +1093,7 @@ QBShared.Vehicles = { ['model'] = 'dominator7', ['price'] = 110000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dominator7`, ['shop'] = 'pdm', }, @@ -994,6 +1103,7 @@ QBShared.Vehicles = { ['model'] = 'dominator8', ['price'] = 80000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dominator8`, ['shop'] = 'pdm', }, @@ -1003,6 +1113,7 @@ QBShared.Vehicles = { ['model'] = 'dukes', ['price'] = 23500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dukes`, ['shop'] = 'pdm', }, @@ -1012,6 +1123,7 @@ QBShared.Vehicles = { ['model'] = 'dukes2', ['price'] = 60000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dukes2`, ['shop'] = 'pdm', }, @@ -1021,6 +1133,7 @@ QBShared.Vehicles = { ['model'] = 'dukes3', ['price'] = 45000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `dukes3`, ['shop'] = 'pdm', }, @@ -1030,6 +1143,7 @@ QBShared.Vehicles = { ['model'] = 'faction', ['price'] = 17000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `faction`, ['shop'] = 'pdm', }, @@ -1039,6 +1153,7 @@ QBShared.Vehicles = { ['model'] = 'faction2', ['price'] = 19000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `faction2`, ['shop'] = 'pdm', }, @@ -1048,6 +1163,7 @@ QBShared.Vehicles = { ['model'] = 'faction3', ['price'] = 35000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `faction3`, ['shop'] = 'pdm', }, @@ -1057,6 +1173,7 @@ QBShared.Vehicles = { ['model'] = 'ellie', ['price'] = 42250, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `ellie`, ['shop'] = 'pdm', }, @@ -1066,6 +1183,7 @@ QBShared.Vehicles = { ['model'] = 'gauntlet', ['price'] = 28500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `gauntlet`, ['shop'] = 'pdm', }, @@ -1075,6 +1193,7 @@ QBShared.Vehicles = { ['model'] = 'gauntlet2', ['price'] = 70000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `gauntlet2`, ['shop'] = 'pdm', }, @@ -1084,6 +1203,7 @@ QBShared.Vehicles = { ['model'] = 'gauntlet3', ['price'] = 75000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `gauntlet3`, ['shop'] = 'pdm', }, @@ -1093,6 +1213,7 @@ QBShared.Vehicles = { ['model'] = 'gauntlet4', ['price'] = 80000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `gauntlet4`, ['shop'] = 'pdm', }, @@ -1102,6 +1223,7 @@ QBShared.Vehicles = { ['model'] = 'gauntlet5', ['price'] = 120000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `gauntlet5`, ['shop'] = 'pdm', }, @@ -1111,6 +1233,7 @@ QBShared.Vehicles = { ['model'] = 'hermes', ['price'] = 535000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `hermes`, ['shop'] = 'pdm', }, @@ -1120,6 +1243,7 @@ QBShared.Vehicles = { ['model'] = 'hotknife', ['price'] = 90000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `hotknife`, ['shop'] = 'pdm', }, @@ -1129,6 +1253,7 @@ QBShared.Vehicles = { ['model'] = 'hustler', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `hustler`, ['shop'] = 'pdm', }, @@ -1138,6 +1263,7 @@ QBShared.Vehicles = { ['model'] = 'impaler', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `impaler`, ['shop'] = 'pdm', }, @@ -1147,6 +1273,7 @@ QBShared.Vehicles = { ['model'] = 'impaler2', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `impaler2`, ['shop'] = 'pdm', }, @@ -1156,6 +1283,7 @@ QBShared.Vehicles = { ['model'] = 'impaler3', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `impaler3`, ['shop'] = 'pdm', }, @@ -1165,6 +1293,7 @@ QBShared.Vehicles = { ['model'] = 'impaler4', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `impaler4`, ['shop'] = 'pdm', }, @@ -1174,6 +1303,7 @@ QBShared.Vehicles = { ['model'] = 'imperator', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `imperator`, ['shop'] = 'pdm', }, @@ -1183,6 +1313,7 @@ QBShared.Vehicles = { ['model'] = 'imperator2', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `imperator2`, ['shop'] = 'pdm', }, @@ -1192,6 +1323,7 @@ QBShared.Vehicles = { ['model'] = 'imperator3', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `imperator3`, ['shop'] = 'pdm', }, @@ -1201,6 +1333,7 @@ QBShared.Vehicles = { ['model'] = 'lurcher', ['price'] = 21000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `lurcher`, ['shop'] = 'pdm', }, @@ -1210,6 +1343,7 @@ QBShared.Vehicles = { ['model'] = 'moonbeam', ['price'] = 13000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `moonbeam`, ['shop'] = 'pdm', }, @@ -1219,6 +1353,7 @@ QBShared.Vehicles = { ['model'] = 'moonbeam2', ['price'] = 15000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `moonbeam2`, ['shop'] = 'pdm', }, @@ -1228,6 +1363,7 @@ QBShared.Vehicles = { ['model'] = 'nightshade', ['price'] = 70000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `nightshade`, ['shop'] = 'pdm', }, @@ -1237,6 +1373,7 @@ QBShared.Vehicles = { ['model'] = 'peyote2', ['price'] = 40000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `peyote2`, ['shop'] = 'pdm', }, @@ -1246,6 +1383,7 @@ QBShared.Vehicles = { ['model'] = 'phoenix', ['price'] = 65000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `phoenix`, ['shop'] = 'pdm', }, @@ -1255,6 +1393,7 @@ QBShared.Vehicles = { ['model'] = 'picador', ['price'] = 20000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `picador`, ['shop'] = 'pdm', }, @@ -1264,6 +1403,7 @@ QBShared.Vehicles = { ['model'] = 'ratloader2', ['price'] = 20000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `ratloader2`, ['shop'] = 'pdm', }, @@ -1273,6 +1413,7 @@ QBShared.Vehicles = { ['model'] = 'ruiner', ['price'] = 29000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `ruiner`, ['shop'] = 'pdm', }, @@ -1282,6 +1423,7 @@ QBShared.Vehicles = { ['model'] = 'ruiner2', ['price'] = 50000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `ruiner2`, ['shop'] = 'pdm', }, @@ -1291,6 +1433,7 @@ QBShared.Vehicles = { ['model'] = 'sabregt', ['price'] = 23000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `sabregt`, ['shop'] = 'pdm', }, @@ -1300,6 +1443,7 @@ QBShared.Vehicles = { ['model'] = 'sabregt2', ['price'] = 26500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `sabregt2`, ['shop'] = 'pdm', }, @@ -1309,6 +1453,7 @@ QBShared.Vehicles = { ['model'] = 'slamvan', ['price'] = 30000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `slamvan`, ['shop'] = 'pdm', }, @@ -1318,6 +1463,7 @@ QBShared.Vehicles = { ['model'] = 'slamvan2', ['price'] = 90000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `slamvan2`, ['shop'] = 'pdm', }, @@ -1327,6 +1473,7 @@ QBShared.Vehicles = { ['model'] = 'slamvan3', ['price'] = 17000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `slamvan3`, ['shop'] = 'pdm', }, @@ -1336,6 +1483,7 @@ QBShared.Vehicles = { ['model'] = 'stalion', ['price'] = 33000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `stalion`, ['shop'] = 'pdm', }, @@ -1345,6 +1493,7 @@ QBShared.Vehicles = { ['model'] = 'stalion2', ['price'] = 40000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `stalion2`, ['shop'] = 'pdm', }, @@ -1354,6 +1503,7 @@ QBShared.Vehicles = { ['model'] = 'tampa', ['price'] = 24500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `tampa`, ['shop'] = 'pdm', }, @@ -1363,6 +1513,7 @@ QBShared.Vehicles = { ['model'] = 'tulip', ['price'] = 80000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `tulip`, ['shop'] = 'pdm', }, @@ -1372,6 +1523,7 @@ QBShared.Vehicles = { ['model'] = 'vamos', ['price'] = 30000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `vamos`, ['shop'] = 'pdm', }, @@ -1381,6 +1533,7 @@ QBShared.Vehicles = { ['model'] = 'vigero', ['price'] = 39500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `vigero`, ['shop'] = 'pdm', }, @@ -1390,6 +1543,7 @@ QBShared.Vehicles = { ['model'] = 'virgo', ['price'] = 22000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `virgo`, ['shop'] = 'pdm', }, @@ -1399,6 +1553,7 @@ QBShared.Vehicles = { ['model'] = 'virgo2', ['price'] = 21000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `virgo2`, ['shop'] = 'pdm', }, @@ -1408,6 +1563,7 @@ QBShared.Vehicles = { ['model'] = 'virgo3', ['price'] = 21000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `virgo3`, ['shop'] = 'pdm', }, @@ -1417,6 +1573,7 @@ QBShared.Vehicles = { ['model'] = 'voodoo', ['price'] = 13000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `voodoo`, ['shop'] = 'pdm', }, @@ -1426,6 +1583,7 @@ QBShared.Vehicles = { ['model'] = 'yosemite', ['price'] = 19500, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `yosemite`, ['shop'] = 'pdm', }, @@ -1435,6 +1593,7 @@ QBShared.Vehicles = { ['model'] = 'yosemite2', ['price'] = 55000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `yosemite2`, ['shop'] = 'pdm', }, @@ -1443,6 +1602,7 @@ QBShared.Vehicles = { ['brand'] = 'Declasse', ['price'] = 425000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'yosemite3', ['hash'] = `yosemite3`, ['shop'] = 'pdm', @@ -1453,6 +1613,7 @@ QBShared.Vehicles = { ['model'] = 'buffalo4', ['price'] = 345000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `buffalo4`, ['shop'] = 'pdm', }, @@ -1462,6 +1623,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 9000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'bfinjection', ['hash'] = `bfinjection`, ['shop'] = 'pdm', @@ -1471,6 +1633,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 15500, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'bifta', ['hash'] = `bifta`, ['shop'] = 'pdm', @@ -1480,6 +1643,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 7500, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'blazer', ['hash'] = `blazer`, ['shop'] = 'pdm', @@ -1490,6 +1654,7 @@ QBShared.Vehicles = { ['model'] = 'blazer2', ['price'] = 7000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `blazer2`, ['shop'] = 'pdm', }, @@ -1499,6 +1664,7 @@ QBShared.Vehicles = { ['model'] = 'blazer3', ['price'] = 7000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `blazer3`, ['shop'] = 'pdm', }, @@ -1507,6 +1673,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 9250, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'blazer4', ['hash'] = `blazer4`, ['shop'] = 'pdm', @@ -1517,6 +1684,7 @@ QBShared.Vehicles = { ['model'] = 'blazer5', ['price'] = 40000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `blazer5`, ['shop'] = 'pdm', }, @@ -1525,6 +1693,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 40000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'brawler', ['hash'] = `brawler`, ['shop'] = 'pdm', @@ -1535,6 +1704,7 @@ QBShared.Vehicles = { ['model'] = 'caracara', ['price'] = 60000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `caracara`, ['shop'] = 'pdm', }, @@ -1544,6 +1714,7 @@ QBShared.Vehicles = { ['model'] = 'caracara2', ['price'] = 80000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `caracara2`, ['shop'] = 'pdm', }, @@ -1552,6 +1723,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 34000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'dubsta3', ['hash'] = `dubsta3`, ['shop'] = 'pdm', @@ -1561,6 +1733,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 14000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'dune', ['hash'] = `dune`, ['shop'] = 'pdm', @@ -1571,6 +1744,7 @@ QBShared.Vehicles = { ['model'] = 'everon', ['price'] = 60000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `everon`, ['shop'] = 'pdm', }, @@ -1580,6 +1754,7 @@ QBShared.Vehicles = { ['model'] = 'freecrawler', ['price'] = 24000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `freecrawler`, ['shop'] = 'pdm', }, @@ -1589,6 +1764,7 @@ QBShared.Vehicles = { ['model'] = 'hellion', ['price'] = 38000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `hellion`, ['shop'] = 'pdm', }, @@ -1598,6 +1774,7 @@ QBShared.Vehicles = { ['model'] = 'kalahari', ['price'] = 14000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `kalahari`, ['shop'] = 'pdm', }, @@ -1607,6 +1784,7 @@ QBShared.Vehicles = { ['model'] = 'kamacho', ['price'] = 50000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `kamacho`, ['shop'] = 'pdm', }, @@ -1616,6 +1794,7 @@ QBShared.Vehicles = { ['model'] = 'mesa3', ['price'] = 400000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `mesa3`, ['shop'] = 'pdm', }, @@ -1625,6 +1804,7 @@ QBShared.Vehicles = { ['model'] = 'outlaw', ['price'] = 15000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `outlaw`, ['shop'] = 'pdm', }, @@ -1634,6 +1814,7 @@ QBShared.Vehicles = { ['model'] = 'rancherxl', ['price'] = 24000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `rancherxl`, ['shop'] = 'pdm', }, @@ -1643,6 +1824,7 @@ QBShared.Vehicles = { ['model'] = 'rebel2', ['price'] = 20000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `rebel2`, ['shop'] = 'pdm', }, @@ -1652,6 +1834,7 @@ QBShared.Vehicles = { ['model'] = 'riata', ['price'] = 380000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `riata`, ['shop'] = 'pdm', }, @@ -1660,6 +1843,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 25000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'sandking', ['hash'] = `sandking`, ['shop'] = 'pdm', @@ -1669,6 +1853,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 38000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'sandking2', ['hash'] = `sandking2`, ['shop'] = 'pdm', @@ -1678,6 +1863,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 60000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'trophytruck', ['hash'] = `trophytruck`, ['shop'] = 'pdm', @@ -1687,6 +1873,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 80000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'trophytruck2', ['hash'] = `trophytruck2`, ['shop'] = 'pdm', @@ -1696,6 +1883,7 @@ QBShared.Vehicles = { ['brand'] = 'Maxwell', ['price'] = 50000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'vagrant', ['hash'] = `vagrant`, ['shop'] = 'pdm', @@ -1705,6 +1893,7 @@ QBShared.Vehicles = { ['brand'] = 'Dinka', ['price'] = 20000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'verus', ['hash'] = `verus`, ['shop'] = 'pdm', @@ -1714,6 +1903,7 @@ QBShared.Vehicles = { ['brand'] = 'Vapid', ['price'] = 10000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'winky', ['hash'] = `winky`, ['shop'] = 'pdm', @@ -1725,6 +1915,7 @@ QBShared.Vehicles = { ['model'] = 'baller', ['price'] = 22000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `baller`, ['shop'] = 'pdm', }, @@ -1734,6 +1925,7 @@ QBShared.Vehicles = { ['model'] = 'baller2', ['price'] = 15000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `baller2`, ['shop'] = 'pdm', }, @@ -1743,6 +1935,7 @@ QBShared.Vehicles = { ['model'] = 'baller3', ['price'] = 15000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `baller3`, ['shop'] = 'pdm', }, @@ -1752,6 +1945,7 @@ QBShared.Vehicles = { ['model'] = 'baller4', ['price'] = 29000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `baller4`, ['shop'] = 'pdm', }, @@ -1761,6 +1955,7 @@ QBShared.Vehicles = { ['model'] = 'baller5', ['price'] = 78000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `baller5`, ['shop'] = 'pdm', }, @@ -1770,6 +1965,7 @@ QBShared.Vehicles = { ['model'] = 'baller6', ['price'] = 82000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `baller6`, ['shop'] = 'pdm', }, @@ -1779,6 +1975,7 @@ QBShared.Vehicles = { ['model'] = 'bjxl', ['price'] = 19000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `bjxl`, ['shop'] = 'pdm', }, @@ -1788,6 +1985,7 @@ QBShared.Vehicles = { ['model'] = 'cavalcade', ['price'] = 14000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `cavalcade`, ['shop'] = 'pdm', }, @@ -1797,6 +1995,7 @@ QBShared.Vehicles = { ['model'] = 'cavalcade2', ['price'] = 16500, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `cavalcade2`, ['shop'] = 'pdm', }, @@ -1806,6 +2005,7 @@ QBShared.Vehicles = { ['model'] = 'contender', ['price'] = 35000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `contender`, ['shop'] = 'pdm', }, @@ -1815,6 +2015,7 @@ QBShared.Vehicles = { ['model'] = 'dubsta', ['price'] = 19000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `dubsta`, ['shop'] = 'pdm', }, @@ -1824,6 +2025,7 @@ QBShared.Vehicles = { ['model'] = 'dubsta2', ['price'] = 19500, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `dubsta2`, ['shop'] = 'pdm', }, @@ -1833,6 +2035,7 @@ QBShared.Vehicles = { ['model'] = 'fq2', ['price'] = 18500, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `fq2`, ['shop'] = 'pdm', }, @@ -1842,6 +2045,7 @@ QBShared.Vehicles = { ['model'] = 'granger', ['price'] = 22000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `granger`, ['shop'] = 'pdm', }, @@ -1851,6 +2055,7 @@ QBShared.Vehicles = { ['model'] = 'gresley', ['price'] = 25000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `gresley`, ['shop'] = 'pdm', }, @@ -1860,6 +2065,7 @@ QBShared.Vehicles = { ['model'] = 'habanero', ['price'] = 20000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `habanero`, ['shop'] = 'pdm', }, @@ -1869,6 +2075,7 @@ QBShared.Vehicles = { ['model'] = 'huntley', ['price'] = 24500, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `huntley`, ['shop'] = 'pdm', }, @@ -1878,6 +2085,7 @@ QBShared.Vehicles = { ['model'] = 'landstalker', ['price'] = 12000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `landstalker`, ['shop'] = 'pdm', }, @@ -1887,6 +2095,7 @@ QBShared.Vehicles = { ['model'] = 'landstalker2', ['price'] = 26000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `landstalker2`, ['shop'] = 'pdm', }, @@ -1896,6 +2105,7 @@ QBShared.Vehicles = { ['model'] = 'mesa', ['price'] = 12000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `mesa`, ['shop'] = 'pdm', }, @@ -1905,6 +2115,7 @@ QBShared.Vehicles = { ['model'] = 'novak', ['price'] = 70000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `novak`, ['shop'] = 'pdm', }, @@ -1914,6 +2125,7 @@ QBShared.Vehicles = { ['model'] = 'patriot', ['price'] = 21000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `patriot`, ['shop'] = 'pdm', }, @@ -1923,6 +2135,7 @@ QBShared.Vehicles = { ['model'] = 'radi', ['price'] = 18000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `radi`, ['shop'] = 'pdm', }, @@ -1932,6 +2145,7 @@ QBShared.Vehicles = { ['model'] = 'rebla', ['price'] = 21000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `rebla`, ['shop'] = 'pdm', }, @@ -1941,6 +2155,7 @@ QBShared.Vehicles = { ['model'] = 'rocoto', ['price'] = 13000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `rocoto`, ['shop'] = 'pdm', }, @@ -1950,6 +2165,7 @@ QBShared.Vehicles = { ['model'] = 'seminole', ['price'] = 20000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `seminole`, ['shop'] = 'pdm', }, @@ -1959,6 +2175,7 @@ QBShared.Vehicles = { ['model'] = 'seminole2', ['price'] = 13000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `seminole2`, ['shop'] = 'pdm', }, @@ -1968,6 +2185,7 @@ QBShared.Vehicles = { ['model'] = 'serrano', ['price'] = 48000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `serrano`, ['shop'] = 'pdm', }, @@ -1977,6 +2195,7 @@ QBShared.Vehicles = { ['model'] = 'toros', ['price'] = 65000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `toros`, ['shop'] = 'pdm', }, @@ -1986,6 +2205,7 @@ QBShared.Vehicles = { ['model'] = 'xls', ['price'] = 17000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `xls`, ['shop'] = 'pdm', }, @@ -1995,6 +2215,7 @@ QBShared.Vehicles = { ['model'] = 'granger2', ['price'] = 221000, ['category'] = 'suvs', + ['categoryLabel'] = 'suvs', ['hash'] = `granger2`, ['shop'] = 'pdm', }, @@ -2005,6 +2226,7 @@ QBShared.Vehicles = { ['model'] = 'asea', ['price'] = 2500, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `asea`, ['shop'] = 'pdm', }, @@ -2014,6 +2236,7 @@ QBShared.Vehicles = { ['model'] = 'asterope', ['price'] = 11000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `asterope`, ['shop'] = 'pdm', }, @@ -2023,6 +2246,7 @@ QBShared.Vehicles = { ['model'] = 'cog55', ['price'] = 22000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `cog55`, ['shop'] = 'pdm', }, @@ -2032,6 +2256,7 @@ QBShared.Vehicles = { ['model'] = 'cognoscenti', ['price'] = 22500, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `cognoscenti`, ['shop'] = 'pdm', }, @@ -2041,6 +2266,7 @@ QBShared.Vehicles = { ['model'] = 'emperor', ['price'] = 4250, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `emperor`, ['shop'] = 'pdm', }, @@ -2050,6 +2276,7 @@ QBShared.Vehicles = { ['model'] = 'fugitive', ['price'] = 20000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `fugitive`, ['shop'] = 'pdm', }, @@ -2059,6 +2286,7 @@ QBShared.Vehicles = { ['model'] = 'glendale', ['price'] = 3400, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `glendale`, ['shop'] = 'pdm', }, @@ -2068,6 +2296,7 @@ QBShared.Vehicles = { ['model'] = 'glendale2', ['price'] = 12000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `glendale2`, ['shop'] = 'pdm', }, @@ -2077,6 +2306,7 @@ QBShared.Vehicles = { ['model'] = 'ingot', ['price'] = 4999, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `ingot`, ['shop'] = 'pdm', }, @@ -2086,6 +2316,7 @@ QBShared.Vehicles = { ['model'] = 'intruder', ['price'] = 11250, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `intruder`, ['shop'] = 'pdm', }, @@ -2095,6 +2326,7 @@ QBShared.Vehicles = { ['model'] = 'premier', ['price'] = 12000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `premier`, ['shop'] = 'pdm', }, @@ -2104,6 +2336,7 @@ QBShared.Vehicles = { ['model'] = 'primo', ['price'] = 5000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `primo`, ['shop'] = 'pdm', }, @@ -2113,6 +2346,7 @@ QBShared.Vehicles = { ['model'] = 'primo2', ['price'] = 14500, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `primo2`, ['shop'] = 'pdm', }, @@ -2122,6 +2356,7 @@ QBShared.Vehicles = { ['model'] = 'regina', ['price'] = 7000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `regina`, ['shop'] = 'pdm', }, @@ -2131,6 +2366,7 @@ QBShared.Vehicles = { ['model'] = 'stafford', ['price'] = 30000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `stafford`, ['shop'] = 'pdm', }, @@ -2140,6 +2376,7 @@ QBShared.Vehicles = { ['model'] = 'stanier', ['price'] = 19000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `stanier`, ['shop'] = 'pdm', }, @@ -2149,6 +2386,7 @@ QBShared.Vehicles = { ['model'] = 'stratum', ['price'] = 15000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `stratum`, ['shop'] = 'pdm', }, @@ -2158,6 +2396,7 @@ QBShared.Vehicles = { ['model'] = 'stretch', ['price'] = 19000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `stretch`, ['shop'] = 'pdm', }, @@ -2167,6 +2406,7 @@ QBShared.Vehicles = { ['model'] = 'superd', ['price'] = 17000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `superd`, ['shop'] = 'pdm', }, @@ -2176,6 +2416,7 @@ QBShared.Vehicles = { ['model'] = 'surge', ['price'] = 20000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `surge`, ['shop'] = 'pdm', }, @@ -2185,6 +2426,7 @@ QBShared.Vehicles = { ['model'] = 'tailgater', ['price'] = 22000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `tailgater`, ['shop'] = 'pdm', }, @@ -2194,6 +2436,7 @@ QBShared.Vehicles = { ['model'] = 'warrener', ['price'] = 4000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `warrener`, ['shop'] = 'pdm', }, @@ -2203,6 +2446,7 @@ QBShared.Vehicles = { ['model'] = 'washington', ['price'] = 7000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `washington`, ['shop'] = 'pdm', }, @@ -2212,6 +2456,7 @@ QBShared.Vehicles = { ['model'] = 'tailgater2', ['price'] = 51000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `tailgater2`, ['shop'] = 'pdm', }, @@ -2221,6 +2466,7 @@ QBShared.Vehicles = { ['model'] = 'cinquemila', ['price'] = 125000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `cinquemila`, ['shop'] = 'pdm', }, @@ -2230,6 +2476,7 @@ QBShared.Vehicles = { ['model'] = 'iwagen', ['price'] = 225000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `iwagen`, ['shop'] = 'pdm', }, @@ -2239,6 +2486,7 @@ QBShared.Vehicles = { ['model'] = 'astron', ['price'] = 150000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `astron`, ['shop'] = 'pdm', }, @@ -2248,6 +2496,7 @@ QBShared.Vehicles = { ['model'] = 'baller7', ['price'] = 145000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `baller7`, ['shop'] = 'pdm', }, @@ -2257,6 +2506,7 @@ QBShared.Vehicles = { ['model'] = 'comet7', ['price'] = 25000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `comet7`, ['shop'] = 'pdm', }, @@ -2266,6 +2516,7 @@ QBShared.Vehicles = { ['model'] = 'deity', ['price'] = 505000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `deity`, ['shop'] = 'pdm', }, @@ -2275,6 +2526,7 @@ QBShared.Vehicles = { ['model'] = 'jubilee', ['price'] = 485000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `jubilee`, ['shop'] = 'pdm', }, @@ -2284,6 +2536,7 @@ QBShared.Vehicles = { ['model'] = 'patriot3', ['price'] = 270000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `patriot3`, ['shop'] = 'pdm', }, @@ -2294,6 +2547,7 @@ QBShared.Vehicles = { ['model'] = 'alpha', ['price'] = 53000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `alpha`, ['shop'] = 'luxury', }, @@ -2303,6 +2557,7 @@ QBShared.Vehicles = { ['model'] = 'banshee', ['price'] = 56000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `banshee`, ['shop'] = 'luxury', }, @@ -2312,6 +2567,7 @@ QBShared.Vehicles = { ['model'] = 'bestiagts', ['price'] = 37000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `bestiagts`, ['shop'] = 'luxury', }, @@ -2321,6 +2577,7 @@ QBShared.Vehicles = { ['model'] = 'blista2', ['price'] = 18950, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `blista2`, ['shop'] = 'pdm', }, @@ -2330,6 +2587,7 @@ QBShared.Vehicles = { ['model'] = 'blista3', ['price'] = 15000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `blista3`, ['shop'] = 'pdm', }, @@ -2339,6 +2597,7 @@ QBShared.Vehicles = { ['model'] = 'buffalo', ['price'] = 18750, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `buffalo`, ['shop'] = 'luxury', }, @@ -2348,6 +2607,7 @@ QBShared.Vehicles = { ['model'] = 'buffalo2', ['price'] = 24500, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `buffalo2`, ['shop'] = 'luxury', }, @@ -2357,6 +2617,7 @@ QBShared.Vehicles = { ['model'] = 'carbonizzare', ['price'] = 155000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `carbonizzare`, ['shop'] = 'luxury', }, @@ -2366,6 +2627,7 @@ QBShared.Vehicles = { ['model'] = 'comet2', ['price'] = 130000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `comet2`, ['shop'] = 'luxury', }, @@ -2375,6 +2637,7 @@ QBShared.Vehicles = { ['model'] = 'comet3', ['price'] = 175000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `comet3`, ['shop'] = 'luxury', }, @@ -2384,6 +2647,7 @@ QBShared.Vehicles = { ['model'] = 'comet4', ['price'] = 110000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `comet4`, ['shop'] = 'luxury', }, @@ -2393,6 +2657,7 @@ QBShared.Vehicles = { ['model'] = 'comet5', ['price'] = 155000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `comet5`, ['shop'] = 'luxury', }, @@ -2402,6 +2667,7 @@ QBShared.Vehicles = { ['model'] = 'coquette', ['price'] = 145000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `coquette`, ['shop'] = 'luxury', }, @@ -2411,6 +2677,7 @@ QBShared.Vehicles = { ['model'] = 'coquette2', ['price'] = 165000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `coquette2`, ['shop'] = 'pdm', }, @@ -2420,6 +2687,7 @@ QBShared.Vehicles = { ['model'] = 'coquette4', ['price'] = 220000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `coquette4`, ['shop'] = 'luxury', }, @@ -2429,6 +2697,7 @@ QBShared.Vehicles = { ['model'] = 'drafter', ['price'] = 80000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `drafter`, ['shop'] = 'luxury', }, @@ -2438,6 +2707,7 @@ QBShared.Vehicles = { ['model'] = 'deveste', ['price'] = 234000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `deveste`, ['shop'] = 'luxury', }, @@ -2447,6 +2717,7 @@ QBShared.Vehicles = { ['model'] = 'elegy', ['price'] = 145000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `elegy`, ['shop'] = 'luxury', }, @@ -2456,6 +2727,7 @@ QBShared.Vehicles = { ['model'] = 'elegy2', ['price'] = 150000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `elegy2`, ['shop'] = 'luxury', }, @@ -2465,6 +2737,7 @@ QBShared.Vehicles = { ['model'] = 'feltzer2', ['price'] = 97000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `feltzer2`, ['shop'] = 'luxury', }, @@ -2474,6 +2747,7 @@ QBShared.Vehicles = { ['model'] = 'flashgt', ['price'] = 48000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `flashgt`, ['shop'] = 'luxury', }, @@ -2483,6 +2757,7 @@ QBShared.Vehicles = { ['model'] = 'furoregt', ['price'] = 78000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `furoregt`, ['shop'] = 'luxury', }, @@ -2492,6 +2767,7 @@ QBShared.Vehicles = { ['model'] = 'futo', ['price'] = 17500, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `futo`, ['shop'] = 'pdm', }, @@ -2501,6 +2777,7 @@ QBShared.Vehicles = { ['model'] = 'gb200', ['price'] = 140000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `gb200`, ['shop'] = 'luxury', }, @@ -2510,6 +2787,7 @@ QBShared.Vehicles = { ['model'] = 'komoda', ['price'] = 55000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `komoda`, ['shop'] = 'luxury', }, @@ -2519,6 +2797,7 @@ QBShared.Vehicles = { ['model'] = 'imorgon', ['price'] = 120000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `imorgon`, ['shop'] = 'luxury', }, @@ -2528,6 +2807,7 @@ QBShared.Vehicles = { ['model'] = 'issi7', ['price'] = 100000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `issi7`, ['shop'] = 'pdm', }, @@ -2537,6 +2817,7 @@ QBShared.Vehicles = { ['model'] = 'italigto', ['price'] = 260000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `italigto`, ['shop'] = 'luxury', }, @@ -2546,6 +2827,7 @@ QBShared.Vehicles = { ['model'] = 'jugular', ['price'] = 80000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `jugular`, ['shop'] = 'luxury', }, @@ -2555,6 +2837,7 @@ QBShared.Vehicles = { ['model'] = 'jester', ['price'] = 132250, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `jester`, ['shop'] = 'luxury', }, @@ -2564,6 +2847,7 @@ QBShared.Vehicles = { ['model'] = 'jester2', ['price'] = 210000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `jester2`, ['shop'] = 'luxury', }, @@ -2573,6 +2857,7 @@ QBShared.Vehicles = { ['model'] = 'jester3', ['price'] = 85000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `jester3`, ['shop'] = 'luxury', }, @@ -2582,6 +2867,7 @@ QBShared.Vehicles = { ['model'] = 'khamelion', ['price'] = 90000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `khamelion`, ['shop'] = 'luxury', }, @@ -2591,6 +2877,7 @@ QBShared.Vehicles = { ['model'] = 'kuruma', ['price'] = 72000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `kuruma`, ['shop'] = 'luxury', }, @@ -2600,6 +2887,7 @@ QBShared.Vehicles = { ['model'] = 'kuruma2', ['price'] = 72000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `kuruma2`, ['shop'] = 'luxury', }, @@ -2609,6 +2897,7 @@ QBShared.Vehicles = { ['model'] = 'locust', ['price'] = 200000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `locust`, ['shop'] = 'luxury', }, @@ -2618,6 +2907,7 @@ QBShared.Vehicles = { ['model'] = 'lynx', ['price'] = 150000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `lynx`, ['shop'] = 'luxury', }, @@ -2627,6 +2917,7 @@ QBShared.Vehicles = { ['model'] = 'massacro', ['price'] = 110000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `massacro`, ['shop'] = 'luxury', }, @@ -2636,6 +2927,7 @@ QBShared.Vehicles = { ['model'] = 'massacro2', ['price'] = 80000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `massacro2`, ['shop'] = 'luxury', }, @@ -2645,6 +2937,7 @@ QBShared.Vehicles = { ['model'] = 'neo', ['price'] = 230000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `neo`, ['shop'] = 'luxury', }, @@ -2654,6 +2947,7 @@ QBShared.Vehicles = { ['model'] = 'neon', ['price'] = 220000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `neon`, ['shop'] = 'luxury', }, @@ -2663,6 +2957,7 @@ QBShared.Vehicles = { ['model'] = 'ninef', ['price'] = 95000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `ninef`, ['shop'] = 'luxury', }, @@ -2672,6 +2967,7 @@ QBShared.Vehicles = { ['model'] = 'ninef2', ['price'] = 105000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `ninef2`, ['shop'] = 'luxury', }, @@ -2681,6 +2977,7 @@ QBShared.Vehicles = { ['model'] = 'omnis', ['price'] = 90000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `omnis`, ['shop'] = 'luxury', }, @@ -2690,6 +2987,7 @@ QBShared.Vehicles = { ['model'] = 'paragon', ['price'] = 60000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `paragon`, ['shop'] = 'luxury', }, @@ -2699,6 +2997,7 @@ QBShared.Vehicles = { ['model'] = 'pariah', ['price'] = 90000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `pariah`, ['shop'] = 'luxury', }, @@ -2708,6 +3007,7 @@ QBShared.Vehicles = { ['model'] = 'penumbra', ['price'] = 22000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `penumbra`, ['shop'] = 'luxury', }, @@ -2717,6 +3017,7 @@ QBShared.Vehicles = { ['model'] = 'penumbra2', ['price'] = 30000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `penumbra2`, ['shop'] = 'luxury', }, @@ -2726,6 +3027,7 @@ QBShared.Vehicles = { ['model'] = 'rapidgt', ['price'] = 86000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `rapidgt`, ['shop'] = 'luxury', }, @@ -2735,6 +3037,7 @@ QBShared.Vehicles = { ['model'] = 'rapidgt2', ['price'] = 92000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `rapidgt2`, ['shop'] = 'luxury', }, @@ -2744,6 +3047,7 @@ QBShared.Vehicles = { ['model'] = 'raptor', ['price'] = 90000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `raptor`, ['shop'] = 'luxury', }, @@ -2753,6 +3057,7 @@ QBShared.Vehicles = { ['model'] = 'revolter', ['price'] = 95000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `revolter`, ['shop'] = 'luxury', }, @@ -2762,6 +3067,7 @@ QBShared.Vehicles = { ['model'] = 'ruston', ['price'] = 130000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `ruston`, ['shop'] = 'luxury', }, @@ -2771,6 +3077,7 @@ QBShared.Vehicles = { ['model'] = 'schafter2', ['price'] = 16000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `schafter2`, ['shop'] = 'pdm', }, @@ -2780,6 +3087,7 @@ QBShared.Vehicles = { ['model'] = 'schafter3', ['price'] = 35000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `schafter3`, ['shop'] = 'luxury', }, @@ -2789,6 +3097,7 @@ QBShared.Vehicles = { ['model'] = 'schafter4', ['price'] = 21000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `schafter4`, ['shop'] = 'luxury', }, @@ -2798,6 +3107,7 @@ QBShared.Vehicles = { ['model'] = 'schlagen', ['price'] = 160000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `schlagen`, ['shop'] = 'luxury', }, @@ -2807,6 +3117,7 @@ QBShared.Vehicles = { ['model'] = 'schwarzer', ['price'] = 47000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `schwarzer`, ['shop'] = 'luxury', }, @@ -2816,6 +3127,7 @@ QBShared.Vehicles = { ['model'] = 'sentinel3', ['price'] = 70000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `sentinel3`, ['shop'] = 'pdm', }, @@ -2825,6 +3137,7 @@ QBShared.Vehicles = { ['model'] = 'seven70', ['price'] = 140000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `seven70`, ['shop'] = 'luxury', }, @@ -2834,6 +3147,7 @@ QBShared.Vehicles = { ['model'] = 'specter', ['price'] = 160000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `specter`, ['shop'] = 'luxury', }, @@ -2843,6 +3157,7 @@ QBShared.Vehicles = { ['model'] = 'streiter', ['price'] = 40000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `streiter`, ['shop'] = 'luxury', }, @@ -2852,6 +3167,7 @@ QBShared.Vehicles = { ['model'] = 'sugoi', ['price'] = 85000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `sugoi`, ['shop'] = 'luxury', }, @@ -2861,6 +3177,7 @@ QBShared.Vehicles = { ['model'] = 'sultan', ['price'] = 50000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `sultan`, ['shop'] = 'luxury', }, @@ -2870,6 +3187,7 @@ QBShared.Vehicles = { ['model'] = 'sultan2', ['price'] = 55000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `sultan2`, ['shop'] = 'luxury', }, @@ -2879,6 +3197,7 @@ QBShared.Vehicles = { ['model'] = 'surano', ['price'] = 80000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `surano`, ['shop'] = 'luxury', }, @@ -2888,6 +3207,7 @@ QBShared.Vehicles = { ['model'] = 'tampa2', ['price'] = 80000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `tampa2`, ['shop'] = 'pdm', }, @@ -2897,6 +3217,7 @@ QBShared.Vehicles = { ['model'] = 'tropos', ['price'] = 65000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `tropos`, ['shop'] = 'luxury', }, @@ -2906,6 +3227,7 @@ QBShared.Vehicles = { ['model'] = 'verlierer2', ['price'] = 90500, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `verlierer2`, ['shop'] = 'luxury', }, @@ -2915,6 +3237,7 @@ QBShared.Vehicles = { ['model'] = 'vstr', ['price'] = 80000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `vstr`, ['shop'] = 'luxury', }, @@ -2924,6 +3247,7 @@ QBShared.Vehicles = { ['model'] = 'italirsx', ['price'] = 260000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `italirsx`, ['shop'] = 'luxury', }, @@ -2933,6 +3257,7 @@ QBShared.Vehicles = { ['model'] = 'zr350', ['price'] = 38000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `zr350`, ['shop'] = 'luxury', }, @@ -2942,6 +3267,7 @@ QBShared.Vehicles = { ['model'] = 'calico', ['price'] = 39000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `calico`, ['shop'] = 'luxury', }, @@ -2951,6 +3277,7 @@ QBShared.Vehicles = { ['model'] = 'futo2', ['price'] = 39000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `futo2`, ['shop'] = 'luxury', }, @@ -2960,6 +3287,7 @@ QBShared.Vehicles = { ['model'] = 'euros', ['price'] = 80000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `euros`, ['shop'] = 'luxury', }, @@ -2969,6 +3297,7 @@ QBShared.Vehicles = { ['model'] = 'jester4', ['price'] = 240000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `jester4`, ['shop'] = 'luxury', }, @@ -2978,6 +3307,7 @@ QBShared.Vehicles = { ['model'] = 'remus', ['price'] = 48000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `remus`, ['shop'] = 'luxury', }, @@ -2987,6 +3317,7 @@ QBShared.Vehicles = { ['model'] = 'comet6', ['price'] = 230000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `comet6`, ['shop'] = 'luxury', }, @@ -2996,6 +3327,7 @@ QBShared.Vehicles = { ['model'] = 'growler', ['price'] = 205000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `growler`, ['shop'] = 'luxury', }, @@ -3005,6 +3337,7 @@ QBShared.Vehicles = { ['model'] = 'vectre', ['price'] = 80000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `vectre`, ['shop'] = 'luxury', }, @@ -3014,6 +3347,7 @@ QBShared.Vehicles = { ['model'] = 'cypher', ['price'] = 155000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `cypher`, ['shop'] = 'luxury', }, @@ -3023,6 +3357,7 @@ QBShared.Vehicles = { ['model'] = 'sultan3', ['price'] = 56000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `sultan3`, ['shop'] = 'luxury', }, @@ -3032,6 +3367,7 @@ QBShared.Vehicles = { ['model'] = 'rt3000', ['price'] = 65000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `rt3000`, ['shop'] = 'luxury', }, @@ -3042,6 +3378,7 @@ QBShared.Vehicles = { ['model'] = 'ardent', ['price'] = 30000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `ardent`, ['shop'] = 'pdm', }, @@ -3051,6 +3388,7 @@ QBShared.Vehicles = { ['model'] = 'btype', ['price'] = 75000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `btype`, ['shop'] = 'pdm', }, @@ -3060,6 +3398,7 @@ QBShared.Vehicles = { ['model'] = 'btype2', ['price'] = 87000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `btype2`, ['shop'] = 'pdm', }, @@ -3069,6 +3408,7 @@ QBShared.Vehicles = { ['model'] = 'btype3', ['price'] = 63000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `btype3`, ['shop'] = 'pdm', }, @@ -3078,6 +3418,7 @@ QBShared.Vehicles = { ['model'] = 'casco', ['price'] = 100000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `casco`, ['shop'] = 'pdm', }, @@ -3087,6 +3428,7 @@ QBShared.Vehicles = { ['model'] = 'cheetah2', ['price'] = 195000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `cheetah2`, ['shop'] = 'luxury', }, @@ -3096,6 +3438,7 @@ QBShared.Vehicles = { ['model'] = 'deluxo', ['price'] = 55000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `deluxo`, ['shop'] = 'pdm', }, @@ -3105,6 +3448,7 @@ QBShared.Vehicles = { ['model'] = 'dynasty', ['price'] = 25000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `dynasty`, ['shop'] = 'pdm', }, @@ -3114,6 +3458,7 @@ QBShared.Vehicles = { ['model'] = 'fagaloa', ['price'] = 13000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `fagaloa`, ['shop'] = 'pdm', }, @@ -3123,6 +3468,7 @@ QBShared.Vehicles = { ['model'] = 'feltzer3', ['price'] = 115000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `feltzer3`, ['shop'] = 'pdm', }, @@ -3132,6 +3478,7 @@ QBShared.Vehicles = { ['model'] = 'gt500', ['price'] = 130000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `gt500`, ['shop'] = 'pdm', }, @@ -3141,6 +3488,7 @@ QBShared.Vehicles = { ['model'] = 'infernus2', ['price'] = 245000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `infernus2`, ['shop'] = 'pdm', }, @@ -3150,6 +3498,7 @@ QBShared.Vehicles = { ['model'] = 'jb700', ['price'] = 240000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `jb700`, ['shop'] = 'pdm', }, @@ -3159,6 +3508,7 @@ QBShared.Vehicles = { ['model'] = 'jb7002', ['price'] = 40000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `jb7002`, ['shop'] = 'pdm', }, @@ -3168,6 +3518,7 @@ QBShared.Vehicles = { ['model'] = 'mamba', ['price'] = 140000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `mamba`, ['shop'] = 'pdm', }, @@ -3177,6 +3528,7 @@ QBShared.Vehicles = { ['model'] = 'manana', ['price'] = 12800, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `manana`, ['shop'] = 'pdm', }, @@ -3186,6 +3538,7 @@ QBShared.Vehicles = { ['model'] = 'manana2', ['price'] = 24000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `manana2`, ['shop'] = 'pdm', }, @@ -3195,6 +3548,7 @@ QBShared.Vehicles = { ['model'] = 'michelli', ['price'] = 30000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `michelli`, ['shop'] = 'pdm', }, @@ -3204,6 +3558,7 @@ QBShared.Vehicles = { ['model'] = 'monroe', ['price'] = 115000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `monroe`, ['shop'] = 'pdm', }, @@ -3213,6 +3568,7 @@ QBShared.Vehicles = { ['model'] = 'nebula', ['price'] = 22000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `nebula`, ['shop'] = 'pdm', }, @@ -3222,6 +3578,7 @@ QBShared.Vehicles = { ['model'] = 'peyote', ['price'] = 23500, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `peyote`, ['shop'] = 'pdm', }, @@ -3231,6 +3588,7 @@ QBShared.Vehicles = { ['model'] = 'peyote3', ['price'] = 48000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `peyote3`, ['shop'] = 'pdm', }, @@ -3240,6 +3598,7 @@ QBShared.Vehicles = { ['model'] = 'pigalle', ['price'] = 92000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `pigalle`, ['shop'] = 'pdm', }, @@ -3249,6 +3608,7 @@ QBShared.Vehicles = { ['model'] = 'rapidgt3', ['price'] = 90000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `rapidgt3`, ['shop'] = 'pdm', }, @@ -3258,6 +3618,7 @@ QBShared.Vehicles = { ['model'] = 'retinue', ['price'] = 32000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `retinue`, ['shop'] = 'pdm', }, @@ -3267,6 +3628,7 @@ QBShared.Vehicles = { ['model'] = 'retinue2', ['price'] = 38000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `retinue2`, ['shop'] = 'pdm', }, @@ -3276,6 +3638,7 @@ QBShared.Vehicles = { ['model'] = 'savestra', ['price'] = 67000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `savestra`, ['shop'] = 'pdm', }, @@ -3285,6 +3648,7 @@ QBShared.Vehicles = { ['model'] = 'stinger', ['price'] = 39500, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `stinger`, ['shop'] = 'pdm', }, @@ -3294,6 +3658,7 @@ QBShared.Vehicles = { ['model'] = 'stingergt', ['price'] = 70000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `stingergt`, ['shop'] = 'pdm', }, @@ -3303,6 +3668,7 @@ QBShared.Vehicles = { ['model'] = 'stromberg', ['price'] = 80000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `stromberg`, ['shop'] = 'pdm', }, @@ -3312,6 +3678,7 @@ QBShared.Vehicles = { ['model'] = 'swinger', ['price'] = 221000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `swinger`, ['shop'] = 'pdm', }, @@ -3321,6 +3688,7 @@ QBShared.Vehicles = { ['model'] = 'torero', ['price'] = 84000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `torero`, ['shop'] = 'pdm', }, @@ -3330,6 +3698,7 @@ QBShared.Vehicles = { ['model'] = 'tornado', ['price'] = 21000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `tornado`, ['shop'] = 'pdm', }, @@ -3339,6 +3708,7 @@ QBShared.Vehicles = { ['model'] = 'tornado2', ['price'] = 22000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `tornado2`, ['shop'] = 'pdm', }, @@ -3348,6 +3718,7 @@ QBShared.Vehicles = { ['model'] = 'tornado5', ['price'] = 22000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `tornado5`, ['shop'] = 'pdm', }, @@ -3357,6 +3728,7 @@ QBShared.Vehicles = { ['model'] = 'turismo2', ['price'] = 170000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `turismo2`, ['shop'] = 'pdm', }, @@ -3366,6 +3738,7 @@ QBShared.Vehicles = { ['model'] = 'viseris', ['price'] = 210000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `viseris`, ['shop'] = 'pdm', }, @@ -3375,6 +3748,7 @@ QBShared.Vehicles = { ['model'] = 'z190', ['price'] = 78000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `z190`, ['shop'] = 'pdm', }, @@ -3384,6 +3758,7 @@ QBShared.Vehicles = { ['model'] = 'ztype', ['price'] = 270000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `ztype`, ['shop'] = 'pdm', }, @@ -3393,6 +3768,7 @@ QBShared.Vehicles = { ['model'] = 'zion3', ['price'] = 45000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `zion3`, ['shop'] = 'pdm', }, @@ -3402,6 +3778,7 @@ QBShared.Vehicles = { ['model'] = 'cheburek', ['price'] = 7000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `cheburek`, ['shop'] = 'pdm', }, @@ -3411,6 +3788,7 @@ QBShared.Vehicles = { ['model'] = 'toreador', ['price'] = 50000, ['category'] = 'sportsclassics', + ['categoryLabel'] = 'Sports Classics', ['hash'] = `toreador`, ['shop'] = 'pdm', }, @@ -3421,6 +3799,7 @@ QBShared.Vehicles = { ['model'] = 'adder', ['price'] = 280000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `adder`, ['shop'] = 'luxury', }, @@ -3430,6 +3809,7 @@ QBShared.Vehicles = { ['model'] = 'autarch', ['price'] = 224000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `autarch`, ['shop'] = 'luxury', }, @@ -3439,6 +3819,7 @@ QBShared.Vehicles = { ['model'] = 'banshee2', ['price'] = 120000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `banshee2`, ['shop'] = 'luxury', }, @@ -3448,6 +3829,7 @@ QBShared.Vehicles = { ['model'] = 'bullet', ['price'] = 120000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `bullet`, ['shop'] = 'luxury', }, @@ -3457,6 +3839,7 @@ QBShared.Vehicles = { ['model'] = 'cheetah', ['price'] = 214000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `cheetah`, ['shop'] = 'luxury', }, @@ -3466,6 +3849,7 @@ QBShared.Vehicles = { ['model'] = 'cyclone', ['price'] = 300000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `cyclone`, ['shop'] = 'luxury', }, @@ -3475,6 +3859,7 @@ QBShared.Vehicles = { ['model'] = 'entity2', ['price'] = 164000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `entity2`, ['shop'] = 'luxury', }, @@ -3484,6 +3869,7 @@ QBShared.Vehicles = { ['model'] = 'entityxf', ['price'] = 180000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `entityxf`, ['shop'] = 'luxury', }, @@ -3493,6 +3879,7 @@ QBShared.Vehicles = { ['model'] = 'emerus', ['price'] = 220000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `emerus`, ['shop'] = 'luxury', }, @@ -3502,6 +3889,7 @@ QBShared.Vehicles = { ['model'] = 'fmj', ['price'] = 125000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `fmj`, ['shop'] = 'luxury', }, @@ -3511,6 +3899,7 @@ QBShared.Vehicles = { ['model'] = 'furia', ['price'] = 230000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `furia`, ['shop'] = 'luxury', }, @@ -3520,6 +3909,7 @@ QBShared.Vehicles = { ['model'] = 'gp1', ['price'] = 110000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `gp1`, ['shop'] = 'luxury', }, @@ -3529,6 +3919,7 @@ QBShared.Vehicles = { ['model'] = 'infernus', ['price'] = 235000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `infernus`, ['shop'] = 'luxury', }, @@ -3538,6 +3929,7 @@ QBShared.Vehicles = { ['model'] = 'italigtb', ['price'] = 170000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `italigtb`, ['shop'] = 'luxury', }, @@ -3547,6 +3939,7 @@ QBShared.Vehicles = { ['model'] = 'italigtb2', ['price'] = 250000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `italigtb2`, ['shop'] = 'luxury', }, @@ -3556,6 +3949,7 @@ QBShared.Vehicles = { ['model'] = 'krieger', ['price'] = 222000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `krieger`, ['shop'] = 'luxury', }, @@ -3565,6 +3959,7 @@ QBShared.Vehicles = { ['model'] = 'le7b', ['price'] = 260000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `le7b`, ['shop'] = 'luxury', }, @@ -3574,6 +3969,7 @@ QBShared.Vehicles = { ['model'] = 'nero', ['price'] = 200000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `nero`, ['shop'] = 'luxury', }, @@ -3583,6 +3979,7 @@ QBShared.Vehicles = { ['model'] = 'nero2', ['price'] = 260000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `nero2`, ['shop'] = 'luxury', }, @@ -3592,6 +3989,7 @@ QBShared.Vehicles = { ['model'] = 'osiris', ['price'] = 220000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `osiris`, ['shop'] = 'luxury', }, @@ -3601,6 +3999,7 @@ QBShared.Vehicles = { ['model'] = 'penetrator', ['price'] = 130000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `penetrator`, ['shop'] = 'luxury', }, @@ -3610,6 +4009,7 @@ QBShared.Vehicles = { ['model'] = 'pfister811', ['price'] = 220000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `pfister811`, ['shop'] = 'luxury', }, @@ -3619,6 +4019,7 @@ QBShared.Vehicles = { ['model'] = 'prototipo', ['price'] = 235000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `prototipo`, ['shop'] = 'luxury', }, @@ -3628,6 +4029,7 @@ QBShared.Vehicles = { ['model'] = 'reaper', ['price'] = 100000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `reaper`, ['shop'] = 'luxury', }, @@ -3637,6 +4039,7 @@ QBShared.Vehicles = { ['model'] = 's80', ['price'] = 205000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `s80`, ['shop'] = 'luxury', }, @@ -3646,6 +4049,7 @@ QBShared.Vehicles = { ['model'] = 'sc1', ['price'] = 90000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `sc1`, ['shop'] = 'luxury', }, @@ -3655,6 +4059,7 @@ QBShared.Vehicles = { ['model'] = 'sheava', ['price'] = 220000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `sheava`, ['shop'] = 'luxury', }, @@ -3664,6 +4069,7 @@ QBShared.Vehicles = { ['model'] = 'sultanrs', ['price'] = 76500, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `sultanrs`, ['shop'] = 'luxury', }, @@ -3673,6 +4079,7 @@ QBShared.Vehicles = { ['model'] = 't20', ['price'] = 1650000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `t20`, ['shop'] = 'luxury', }, @@ -3682,6 +4089,7 @@ QBShared.Vehicles = { ['model'] = 'taipan', ['price'] = 1850000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `taipan`, ['shop'] = 'luxury', }, @@ -3691,6 +4099,7 @@ QBShared.Vehicles = { ['model'] = 'tempesta', ['price'] = 120000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `tempesta`, ['shop'] = 'luxury', }, @@ -3700,6 +4109,7 @@ QBShared.Vehicles = { ['model'] = 'tezeract', ['price'] = 220000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `tezeract`, ['shop'] = 'luxury', }, @@ -3709,6 +4119,7 @@ QBShared.Vehicles = { ['model'] = 'thrax', ['price'] = 180000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `thrax`, ['shop'] = 'luxury', }, @@ -3718,6 +4129,7 @@ QBShared.Vehicles = { ['model'] = 'tigon', ['price'] = 240000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `tigon`, ['shop'] = 'luxury', }, @@ -3727,6 +4139,7 @@ QBShared.Vehicles = { ['model'] = 'turismor', ['price'] = 140000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `turismor`, ['shop'] = 'luxury', }, @@ -3736,6 +4149,7 @@ QBShared.Vehicles = { ['model'] = 'tyrant', ['price'] = 2100000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `tyrant`, ['shop'] = 'luxury', }, @@ -3745,6 +4159,7 @@ QBShared.Vehicles = { ['model'] = 'tyrus', ['price'] = 230000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `tyrus`, ['shop'] = 'luxury', }, @@ -3754,6 +4169,7 @@ QBShared.Vehicles = { ['model'] = 'vacca', ['price'] = 105000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `vacca`, ['shop'] = 'luxury', }, @@ -3763,6 +4179,7 @@ QBShared.Vehicles = { ['model'] = 'vagner', ['price'] = 1660000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `vagner`, ['shop'] = 'luxury', }, @@ -3772,6 +4189,7 @@ QBShared.Vehicles = { ['model'] = 'visione', ['price'] = 750000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `visione`, ['shop'] = 'luxury', }, @@ -3781,6 +4199,7 @@ QBShared.Vehicles = { ['model'] = 'voltic', ['price'] = 120000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `voltic`, ['shop'] = 'luxury', }, @@ -3790,6 +4209,7 @@ QBShared.Vehicles = { ['model'] = 'voltic2', ['price'] = 9830400, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `voltic2`, ['shop'] = 'luxury', }, @@ -3799,6 +4219,7 @@ QBShared.Vehicles = { ['model'] = 'xa21', ['price'] = 180000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `xa21`, ['shop'] = 'luxury', }, @@ -3808,6 +4229,7 @@ QBShared.Vehicles = { ['model'] = 'zentorno', ['price'] = 340000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `zentorno`, ['shop'] = 'luxury', }, @@ -3817,6 +4239,7 @@ QBShared.Vehicles = { ['model'] = 'zorrusso', ['price'] = 277000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `zorrusso`, ['shop'] = 'luxury', }, @@ -3827,6 +4250,7 @@ QBShared.Vehicles = { ['model'] = 'bison', ['price'] = 18000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `bison`, ['shop'] = 'pdm', }, @@ -3836,6 +4260,7 @@ QBShared.Vehicles = { ['model'] = 'bobcatxl', ['price'] = 13500, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `bobcatxl`, ['shop'] = 'pdm', }, @@ -3845,6 +4270,7 @@ QBShared.Vehicles = { ['model'] = 'burrito3', ['price'] = 4000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `burrito3`, ['shop'] = 'pdm', }, @@ -3854,6 +4280,7 @@ QBShared.Vehicles = { ['model'] = 'gburrito2', ['price'] = 11500, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `gburrito2`, ['shop'] = 'pdm', }, @@ -3863,6 +4290,7 @@ QBShared.Vehicles = { ['model'] = 'rumpo', ['price'] = 9000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `rumpo`, ['shop'] = 'pdm', }, @@ -3872,6 +4300,7 @@ QBShared.Vehicles = { ['model'] = 'journey', ['price'] = 6500, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `journey`, ['shop'] = 'pdm', }, @@ -3881,6 +4310,7 @@ QBShared.Vehicles = { ['model'] = 'minivan', ['price'] = 7000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `minivan`, ['shop'] = 'pdm', }, @@ -3890,6 +4320,7 @@ QBShared.Vehicles = { ['model'] = 'minivan2', ['price'] = 10000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `minivan2`, ['shop'] = 'pdm', }, @@ -3899,6 +4330,7 @@ QBShared.Vehicles = { ['model'] = 'paradise', ['price'] = 9000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `paradise`, ['shop'] = 'pdm', }, @@ -3908,6 +4340,7 @@ QBShared.Vehicles = { ['model'] = 'rumpo3', ['price'] = 19500, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `rumpo3`, ['shop'] = 'pdm', }, @@ -3917,6 +4350,7 @@ QBShared.Vehicles = { ['model'] = 'speedo', ['price'] = 10000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `speedo`, ['shop'] = 'pdm', }, @@ -3926,6 +4360,7 @@ QBShared.Vehicles = { ['model'] = 'speedo4', ['price'] = 15000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `speedo4`, ['shop'] = 'pdm', }, @@ -3935,6 +4370,7 @@ QBShared.Vehicles = { ['model'] = 'surfer', ['price'] = 9000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `surfer`, ['shop'] = 'pdm', }, @@ -3944,6 +4380,7 @@ QBShared.Vehicles = { ['model'] = 'youga3', ['price'] = 15000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `youga3`, ['shop'] = 'pdm', }, @@ -3953,6 +4390,7 @@ QBShared.Vehicles = { ['model'] = 'youga', ['price'] = 8000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `youga`, ['shop'] = 'pdm', }, @@ -3962,6 +4400,7 @@ QBShared.Vehicles = { ['model'] = 'youga2', ['price'] = 14500, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `youga2`, ['shop'] = 'pdm', }, @@ -3971,6 +4410,7 @@ QBShared.Vehicles = { ['model'] = 'youga4', ['price'] = 85000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `youga4`, ['shop'] = 'pdm', }, @@ -3980,6 +4420,7 @@ QBShared.Vehicles = { ['model'] = 'mule5', ['price'] = 221000, ['category'] = 'vans', + ['categoryLabel'] = 'Vans', ['hash'] = `mule5`, ['shop'] = 'pdm', }, @@ -3990,6 +4431,7 @@ QBShared.Vehicles = { ['model'] = 'sadler', ['price'] = 20000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `sadler`, ['shop'] = 'pdm', }, @@ -3998,6 +4440,7 @@ QBShared.Vehicles = { ['brand'] = 'Annis', ['price'] = 21000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['model'] = 'guardian', ['hash'] = `guardian`, ['shop'] = 'pdm', @@ -4008,6 +4451,7 @@ QBShared.Vehicles = { ['model'] = 'slamtruck', ['price'] = 100000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `slamtruck`, ['shop'] = 'pdm', }, @@ -4017,6 +4461,7 @@ QBShared.Vehicles = { ['model'] = 'warrener2', ['price'] = 30000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `warrener2`, ['shop'] = 'pdm', }, @@ -4027,6 +4472,7 @@ QBShared.Vehicles = { ['model'] = 'squalo', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `squalo`, ['shop'] = 'boats', }, @@ -4036,6 +4482,7 @@ QBShared.Vehicles = { ['model'] = 'marquis', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `marquis`, ['shop'] = 'boats', }, @@ -4045,6 +4492,7 @@ QBShared.Vehicles = { ['model'] = 'seashark', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `seashark`, ['shop'] = 'boats', }, @@ -4054,6 +4502,7 @@ QBShared.Vehicles = { ['model'] = 'seashark2', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `seashark2`, ['shop'] = 'boats', }, @@ -4063,6 +4512,7 @@ QBShared.Vehicles = { ['model'] = 'seashark3', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `seashark3`, ['shop'] = 'boats', }, @@ -4072,6 +4522,7 @@ QBShared.Vehicles = { ['model'] = 'jetmax', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `jetmax`, ['shop'] = 'boats', }, @@ -4081,6 +4532,7 @@ QBShared.Vehicles = { ['model'] = 'tropic', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `tropic`, ['shop'] = 'boats', }, @@ -4090,6 +4542,7 @@ QBShared.Vehicles = { ['model'] = 'tropic2', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `tropic2`, ['shop'] = 'boats', }, @@ -4099,6 +4552,7 @@ QBShared.Vehicles = { ['model'] = 'dinghy', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `dinghy`, ['shop'] = 'boats', }, @@ -4108,6 +4562,7 @@ QBShared.Vehicles = { ['model'] = 'dinghy2', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `dinghy2`, ['shop'] = 'boats', }, @@ -4117,6 +4572,7 @@ QBShared.Vehicles = { ['model'] = 'dinghy3', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `dinghy3`, ['shop'] = 'boats', }, @@ -4126,6 +4582,7 @@ QBShared.Vehicles = { ['model'] = 'dinghy4', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `dinghy4`, ['shop'] = 'boats', }, @@ -4135,6 +4592,7 @@ QBShared.Vehicles = { ['model'] = 'suntrap', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `suntrap`, ['shop'] = 'boats', }, @@ -4144,6 +4602,7 @@ QBShared.Vehicles = { ['model'] = 'speeder', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `speeder`, ['shop'] = 'boats', }, @@ -4153,6 +4612,7 @@ QBShared.Vehicles = { ['model'] = 'speeder2', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `speeder2`, ['shop'] = 'boats', }, @@ -4162,6 +4622,7 @@ QBShared.Vehicles = { ['model'] = 'longfin', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `longfin`, ['shop'] = 'boats', }, @@ -4171,6 +4632,7 @@ QBShared.Vehicles = { ['model'] = 'toro', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `toro`, ['shop'] = 'boats', }, @@ -4180,6 +4642,7 @@ QBShared.Vehicles = { ['model'] = 'toro2', ['price'] = 40000, ['category'] = 'boats', + ['categoryLabel'] = 'Boats', ['hash'] = `toro2`, ['shop'] = 'boats', }, @@ -4190,6 +4653,7 @@ QBShared.Vehicles = { ['model'] = 'buzzard2', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `buzzard2`, ['shop'] = 'air', }, @@ -4199,6 +4663,7 @@ QBShared.Vehicles = { ['model'] = 'frogger', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `frogger`, ['shop'] = 'air', }, @@ -4208,6 +4673,7 @@ QBShared.Vehicles = { ['model'] = 'frogger2', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `frogger2`, ['shop'] = 'air', }, @@ -4217,6 +4683,7 @@ QBShared.Vehicles = { ['model'] = 'maverick', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `maverick`, ['shop'] = 'air', }, @@ -4226,6 +4693,7 @@ QBShared.Vehicles = { ['model'] = 'swift', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `swift`, ['shop'] = 'air', }, @@ -4235,6 +4703,7 @@ QBShared.Vehicles = { ['model'] = 'swift2', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `swift2`, ['shop'] = 'air', }, @@ -4244,6 +4713,7 @@ QBShared.Vehicles = { ['model'] = 'seasparrow', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `seasparrow`, ['shop'] = 'air', }, @@ -4253,6 +4723,7 @@ QBShared.Vehicles = { ['model'] = 'seasparrow2', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `seasparrow2`, ['shop'] = 'air', }, @@ -4262,6 +4733,7 @@ QBShared.Vehicles = { ['model'] = 'seasparrow3', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `seasparrow3`, ['shop'] = 'air', }, @@ -4271,6 +4743,7 @@ QBShared.Vehicles = { ['model'] = 'supervolito', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `supervolito`, ['shop'] = 'air', }, @@ -4280,6 +4753,7 @@ QBShared.Vehicles = { ['model'] = 'supervolito2', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `supervolito2`, ['shop'] = 'air', }, @@ -4289,6 +4763,7 @@ QBShared.Vehicles = { ['model'] = 'volatus', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `volatus`, ['shop'] = 'air', }, @@ -4298,6 +4773,7 @@ QBShared.Vehicles = { ['model'] = 'havok', ['price'] = 52000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `havok`, ['shop'] = 'air', }, @@ -4308,6 +4784,7 @@ QBShared.Vehicles = { ['model'] = 'duster', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `duster`, ['shop'] = 'air', }, @@ -4317,6 +4794,7 @@ QBShared.Vehicles = { ['model'] = 'luxor', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `luxor`, ['shop'] = 'air', }, @@ -4326,6 +4804,7 @@ QBShared.Vehicles = { ['model'] = 'luxor2', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `luxor2`, ['shop'] = 'air', }, @@ -4335,6 +4814,7 @@ QBShared.Vehicles = { ['model'] = 'stunt', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `stunt`, ['shop'] = 'air', }, @@ -4344,6 +4824,7 @@ QBShared.Vehicles = { ['model'] = 'mammatus', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `mammatus`, ['shop'] = 'air', }, @@ -4353,6 +4834,7 @@ QBShared.Vehicles = { ['model'] = 'velum', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `velum`, ['shop'] = 'air', }, @@ -4362,6 +4844,7 @@ QBShared.Vehicles = { ['model'] = 'velum2', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `velum2`, ['shop'] = 'air', }, @@ -4371,6 +4854,7 @@ QBShared.Vehicles = { ['model'] = 'shamal', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `shamal`, ['shop'] = 'air', }, @@ -4380,6 +4864,7 @@ QBShared.Vehicles = { ['model'] = 'vestra', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `vestra`, ['shop'] = 'air', }, @@ -4389,6 +4874,7 @@ QBShared.Vehicles = { ['model'] = 'dodo', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `dodo`, ['shop'] = 'air', }, @@ -4398,6 +4884,7 @@ QBShared.Vehicles = { ['model'] = 'howard', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `howard`, ['shop'] = 'air', }, @@ -4407,6 +4894,7 @@ QBShared.Vehicles = { ['model'] = 'alphaz1', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `alphaz1`, ['shop'] = 'air', }, @@ -4416,6 +4904,7 @@ QBShared.Vehicles = { ['model'] = 'nimbus', ['price'] = 45000, ['category'] = 'planes', + ['categoryLabel'] = 'Planes', ['hash'] = `nimbus`, ['shop'] = 'air', }, @@ -4425,6 +4914,7 @@ QBShared.Vehicles = { ['model'] = 'brioso3', ['price'] = 125000, ['category'] = 'compacts', + ['categoryLabel'] = 'Compacts', ['hash'] = `brioso3`, ['shop'] = 'pdm', }, @@ -4434,6 +4924,7 @@ QBShared.Vehicles = { ['model'] = 'conada', ['price'] = 115000, ['category'] = 'helicopters', + ['categoryLabel'] = 'Helicopters', ['hash'] = `conada`, ['shop'] = 'air', }, @@ -4443,6 +4934,7 @@ QBShared.Vehicles = { ['model'] = 'corsita', ['price'] = 90000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `corsita`, ['shop'] = 'luxury', }, @@ -4452,6 +4944,7 @@ QBShared.Vehicles = { ['model'] = 'draugur', ['price'] = 99000, ['category'] = 'offroad', + ['categoryLabel'] = 'Off Road', ['hash'] = `draugur`, ['shop'] = 'pdm', }, @@ -4461,6 +4954,7 @@ QBShared.Vehicles = { ['model'] = 'greenwood', ['price'] = 105000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `greenwood`, ['shop'] = 'pdm', }, @@ -4470,6 +4964,7 @@ QBShared.Vehicles = { ['model'] = 'kanjosj', ['price'] = 143000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `kanjosj`, ['shop'] = 'pdm', }, @@ -4479,6 +4974,7 @@ QBShared.Vehicles = { ['model'] = 'lm87', ['price'] = 155000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `lm87`, ['shop'] = 'luxury', }, @@ -4488,6 +4984,7 @@ QBShared.Vehicles = { ['model'] = 'omnisegt', ['price'] = 185000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `omnisegt`, ['shop'] = 'luxury', }, @@ -4497,6 +4994,7 @@ QBShared.Vehicles = { ['model'] = 'postlude', ['price'] = 90000, ['category'] = 'coupes', + ['categoryLabel'] = 'Coupes', ['hash'] = `postlude`, ['shop'] = 'pdm', }, @@ -4506,6 +5004,7 @@ QBShared.Vehicles = { ['model'] = 'rhinehart ', ['price'] = 105000, ['category'] = 'sedans', + ['categoryLabel'] = 'Sedans', ['hash'] = `rhinehart`, ['shop'] = 'pdm', }, @@ -4515,6 +5014,7 @@ QBShared.Vehicles = { ['model'] = 'ruiner4', ['price'] = 85000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `ruiner4`, ['shop'] = 'pdm', }, @@ -4524,6 +5024,7 @@ QBShared.Vehicles = { ['model'] = 'sentinel4', ['price'] = 140000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `sentinel4`, ['shop'] = 'luxury', }, @@ -4533,6 +5034,7 @@ QBShared.Vehicles = { ['model'] = 'sm722', ['price'] = 125000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `sm722`, ['shop'] = 'luxury', }, @@ -4542,6 +5044,7 @@ QBShared.Vehicles = { ['model'] = 'tenf', ['price'] = 185000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `tenf`, ['shop'] = 'luxury', }, @@ -4551,6 +5054,7 @@ QBShared.Vehicles = { ['model'] = 'tenf2', ['price'] = 215000, ['category'] = 'sports', + ['categoryLabel'] = 'Sports', ['hash'] = `tenf2`, ['shop'] = 'luxury', }, @@ -4560,6 +5064,7 @@ QBShared.Vehicles = { ['model'] = 'torero2', ['price'] = 245000, ['category'] = 'super', + ['categoryLabel'] = 'Super', ['hash'] = `torero2`, ['shop'] = 'luxury', }, @@ -4569,6 +5074,7 @@ QBShared.Vehicles = { ['model'] = 'vigero2', ['price'] = 105000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `vigero2`, ['shop'] = 'pdm', }, @@ -4578,6 +5084,7 @@ QBShared.Vehicles = { ['model'] = 'weevil2', ['price'] = 95000, ['category'] = 'muscle', + ['categoryLabel'] = 'Muscle', ['hash'] = `weevil2`, ['shop'] = 'pdm', }, From 6ef632ac6f91742a7abcbd8d65ca65e2178787bf Mon Sep 17 00:00:00 2001 From: r0adra93 Date: Thu, 6 Oct 2022 02:57:39 -0400 Subject: [PATCH 06/22] Update vehicles.lua Capitalized remaining values that weren't capitalized. --- shared/vehicles.lua | 180 ++++++++++++++++++++++---------------------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 8981953..2cf753d 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -361,7 +361,7 @@ QBShared.Vehicles = { ['model'] = 'bmx', ['price'] = 160, ['category'] = 'cycles', - ['categoryLabel'] = 'cycles', + ['categoryLabel'] = 'Cycles', ['hash'] = `bmx`, ['shop'] = 'pdm', }, @@ -371,7 +371,7 @@ QBShared.Vehicles = { ['model'] = 'cruiser', ['price'] = 510, ['category'] = 'cycles', - ['categoryLabel'] = 'cycles', + ['categoryLabel'] = 'Cycles', ['hash'] = `cruiser`, ['shop'] = 'pdm', }, @@ -381,7 +381,7 @@ QBShared.Vehicles = { ['model'] = 'fixter', ['price'] = 225, ['category'] = 'cycles', - ['categoryLabel'] = 'cycles', + ['categoryLabel'] = 'Cycles', ['hash'] = `fixter`, ['shop'] = 'pdm', }, @@ -391,7 +391,7 @@ QBShared.Vehicles = { ['model'] = 'scorcher', ['price'] = 280, ['category'] = 'cycles', - ['categoryLabel'] = 'cycles', + ['categoryLabel'] = 'Cycles', ['hash'] = `scorcher`, ['shop'] = 'pdm', }, @@ -401,7 +401,7 @@ QBShared.Vehicles = { ['model'] = 'tribike', ['price'] = 500, ['category'] = 'cycles', - ['categoryLabel'] = 'cycles', + ['categoryLabel'] = 'Cycles', ['hash'] = `tribike`, ['shop'] = 'pdm', }, @@ -411,7 +411,7 @@ QBShared.Vehicles = { ['model'] = 'tribike2', ['price'] = 700, ['category'] = 'cycles', - ['categoryLabel'] = 'cycles', + ['categoryLabel'] = 'Cycles', ['hash'] = `tribike2`, ['shop'] = 'pdm', }, @@ -421,7 +421,7 @@ QBShared.Vehicles = { ['model'] = 'tribike3', ['price'] = 520, ['category'] = 'cycles', - ['categoryLabel'] = 'cycles', + ['categoryLabel'] = 'Cycles', ['hash'] = `tribike3`, ['shop'] = 'pdm', }, @@ -432,7 +432,7 @@ QBShared.Vehicles = { ['model'] = 'akuma', ['price'] = 55000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `akuma`, ['shop'] = 'pdm', }, @@ -442,7 +442,7 @@ QBShared.Vehicles = { ['model'] = 'avarus', ['price'] = 20000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `avarus`, ['shop'] = 'pdm', }, @@ -452,7 +452,7 @@ QBShared.Vehicles = { ['model'] = 'bagger', ['price'] = 13500, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `bagger`, ['shop'] = 'pdm', }, @@ -462,7 +462,7 @@ QBShared.Vehicles = { ['model'] = 'bati', ['price'] = 24000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `bati`, ['shop'] = 'pdm', }, @@ -472,7 +472,7 @@ QBShared.Vehicles = { ['model'] = 'bati2', ['price'] = 19000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `bati2`, ['shop'] = 'pdm', }, @@ -482,7 +482,7 @@ QBShared.Vehicles = { ['model'] = 'bf400', ['price'] = 22000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `bf400`, ['shop'] = 'pdm', }, @@ -492,7 +492,7 @@ QBShared.Vehicles = { ['model'] = 'carbonrs', ['price'] = 22000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `carbonrs`, ['shop'] = 'pdm', }, @@ -502,7 +502,7 @@ QBShared.Vehicles = { ['model'] = 'chimera', ['price'] = 21000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `chimera`, ['shop'] = 'pdm', }, @@ -512,7 +512,7 @@ QBShared.Vehicles = { ['model'] = 'cliffhanger', ['price'] = 28500, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `cliffhanger`, ['shop'] = 'pdm', }, @@ -522,7 +522,7 @@ QBShared.Vehicles = { ['model'] = 'daemon', ['price'] = 14000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `daemon`, ['shop'] = 'pdm', }, @@ -532,7 +532,7 @@ QBShared.Vehicles = { ['model'] = 'daemon2', ['price'] = 23000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `daemon2`, ['shop'] = 'pdm', }, @@ -542,7 +542,7 @@ QBShared.Vehicles = { ['model'] = 'defiler', ['price'] = 30000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `defiler`, ['shop'] = 'pdm', }, @@ -552,7 +552,7 @@ QBShared.Vehicles = { ['model'] = 'deathbike', ['price'] = 30000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `deathbike`, ['shop'] = 'pdm', }, @@ -562,7 +562,7 @@ QBShared.Vehicles = { ['model'] = 'deathbike2', ['price'] = 30000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `deathbike2`, ['shop'] = 'pdm', }, @@ -572,7 +572,7 @@ QBShared.Vehicles = { ['model'] = 'deathbike3', ['price'] = 30000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `deathbike3`, ['shop'] = 'pdm', }, @@ -582,7 +582,7 @@ QBShared.Vehicles = { ['model'] = 'diablous', ['price'] = 30000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `diablous`, ['shop'] = 'pdm', }, @@ -592,7 +592,7 @@ QBShared.Vehicles = { ['model'] = 'diablous2', ['price'] = 38000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `diablous2`, ['shop'] = 'pdm', }, @@ -602,7 +602,7 @@ QBShared.Vehicles = { ['model'] = 'double', ['price'] = 28000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `double`, ['shop'] = 'pdm', }, @@ -612,7 +612,7 @@ QBShared.Vehicles = { ['model'] = 'enduro', ['price'] = 5500, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `enduro`, ['shop'] = 'pdm', }, @@ -622,7 +622,7 @@ QBShared.Vehicles = { ['model'] = 'esskey', ['price'] = 12000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `esskey`, ['shop'] = 'pdm', }, @@ -632,7 +632,7 @@ QBShared.Vehicles = { ['model'] = 'faggio', ['price'] = 2000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `faggio`, ['shop'] = 'pdm', }, @@ -642,7 +642,7 @@ QBShared.Vehicles = { ['model'] = 'faggio2', ['price'] = 1900, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `faggio2`, ['shop'] = 'pdm', }, @@ -652,7 +652,7 @@ QBShared.Vehicles = { ['model'] = 'faggio3', ['price'] = 2500, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `faggio3`, ['shop'] = 'pdm', }, @@ -662,7 +662,7 @@ QBShared.Vehicles = { ['model'] = 'fcr', ['price'] = 5000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `fcr`, ['shop'] = 'pdm', }, @@ -672,7 +672,7 @@ QBShared.Vehicles = { ['model'] = 'fcr2', ['price'] = 19000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `fcr2`, ['shop'] = 'pdm', }, @@ -682,7 +682,7 @@ QBShared.Vehicles = { ['model'] = 'gargoyle', ['price'] = 32000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `gargoyle`, ['shop'] = 'pdm', }, @@ -692,7 +692,7 @@ QBShared.Vehicles = { ['model'] = 'hakuchou', ['price'] = 17000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `hakuchou`, ['shop'] = 'pdm', }, @@ -702,7 +702,7 @@ QBShared.Vehicles = { ['model'] = 'hakuchou2', ['price'] = 45000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `hakuchou2`, ['shop'] = 'pdm', }, @@ -712,7 +712,7 @@ QBShared.Vehicles = { ['model'] = 'hexer', ['price'] = 16000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `hexer`, ['shop'] = 'pdm', }, @@ -722,7 +722,7 @@ QBShared.Vehicles = { ['model'] = 'innovation', ['price'] = 33500, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `innovation`, ['shop'] = 'pdm', }, @@ -732,7 +732,7 @@ QBShared.Vehicles = { ['model'] = 'lectro', ['price'] = 28000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `lectro`, ['shop'] = 'pdm', }, @@ -742,7 +742,7 @@ QBShared.Vehicles = { ['model'] = 'manchez', ['price'] = 8300, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `manchez`, ['shop'] = 'pdm', }, @@ -752,7 +752,7 @@ QBShared.Vehicles = { ['model'] = 'nemesis', ['price'] = 20000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `nemesis`, ['shop'] = 'pdm', }, @@ -762,7 +762,7 @@ QBShared.Vehicles = { ['model'] = 'nightblade', ['price'] = 23000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `nightblade`, ['shop'] = 'pdm', }, @@ -782,7 +782,7 @@ QBShared.Vehicles = { ['model'] = 'pcj', ['price'] = 15000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `pcj`, ['shop'] = 'pdm', }, @@ -792,7 +792,7 @@ QBShared.Vehicles = { ['model'] = 'ratbike', ['price'] = 3000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `ratbike`, ['shop'] = 'pdm', }, @@ -802,7 +802,7 @@ QBShared.Vehicles = { ['model'] = 'ruffian', ['price'] = 25000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `ruffian`, ['shop'] = 'pdm', }, @@ -812,7 +812,7 @@ QBShared.Vehicles = { ['model'] = 'sanchez', ['price'] = 5300, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `sanchez`, ['shop'] = 'pdm', }, @@ -822,7 +822,7 @@ QBShared.Vehicles = { ['model'] = 'sanchez2', ['price'] = 5300, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `sanchez2`, ['shop'] = 'pdm', }, @@ -832,7 +832,7 @@ QBShared.Vehicles = { ['model'] = 'sanctus', ['price'] = 35000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `sanctus`, ['shop'] = 'pdm', }, @@ -842,7 +842,7 @@ QBShared.Vehicles = { ['model'] = 'shotaro', ['price'] = 320000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `shotaro`, ['shop'] = 'pdm', }, @@ -852,7 +852,7 @@ QBShared.Vehicles = { ['model'] = 'sovereign', ['price'] = 8000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `sovereign`, ['shop'] = 'pdm', }, @@ -862,7 +862,7 @@ QBShared.Vehicles = { ['model'] = 'stryder', ['price'] = 50000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `stryder`, ['shop'] = 'pdm', }, @@ -872,7 +872,7 @@ QBShared.Vehicles = { ['model'] = 'thrust', ['price'] = 22000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `thrust`, ['shop'] = 'pdm', }, @@ -882,7 +882,7 @@ QBShared.Vehicles = { ['model'] = 'vader', ['price'] = 7200, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `vader`, ['shop'] = 'pdm', }, @@ -892,7 +892,7 @@ QBShared.Vehicles = { ['model'] = 'vindicator', ['price'] = 19000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `vindicator`, ['shop'] = 'pdm', }, @@ -902,7 +902,7 @@ QBShared.Vehicles = { ['model'] = 'vortex', ['price'] = 31000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `vortex`, ['shop'] = 'pdm', }, @@ -912,7 +912,7 @@ QBShared.Vehicles = { ['model'] = 'wolfsbane', ['price'] = 14000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `wolfsbane`, ['shop'] = 'pdm', }, @@ -922,7 +922,7 @@ QBShared.Vehicles = { ['model'] = 'zombiea', ['price'] = 28000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `zombiea`, ['shop'] = 'pdm', }, @@ -932,7 +932,7 @@ QBShared.Vehicles = { ['model'] = 'zombieb', ['price'] = 27000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `zombieb`, ['shop'] = 'pdm', }, @@ -942,7 +942,7 @@ QBShared.Vehicles = { ['model'] = 'manchez2', ['price'] = 14000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `manchez2`, ['shop'] = 'pdm', }, @@ -952,7 +952,7 @@ QBShared.Vehicles = { ['model'] = 'shinobi', ['price'] = 25000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `shinobi`, ['shop'] = 'pdm', }, @@ -962,7 +962,7 @@ QBShared.Vehicles = { ['model'] = 'reever', ['price'] = 25000, ['category'] = 'motorcycles', - ['categoryLabel'] = 'motorcycles', + ['categoryLabel'] = 'Motorcycles', ['hash'] = `reever`, ['shop'] = 'pdm', }, @@ -1915,7 +1915,7 @@ QBShared.Vehicles = { ['model'] = 'baller', ['price'] = 22000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `baller`, ['shop'] = 'pdm', }, @@ -1925,7 +1925,7 @@ QBShared.Vehicles = { ['model'] = 'baller2', ['price'] = 15000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `baller2`, ['shop'] = 'pdm', }, @@ -1935,7 +1935,7 @@ QBShared.Vehicles = { ['model'] = 'baller3', ['price'] = 15000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `baller3`, ['shop'] = 'pdm', }, @@ -1945,7 +1945,7 @@ QBShared.Vehicles = { ['model'] = 'baller4', ['price'] = 29000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `baller4`, ['shop'] = 'pdm', }, @@ -1955,7 +1955,7 @@ QBShared.Vehicles = { ['model'] = 'baller5', ['price'] = 78000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `baller5`, ['shop'] = 'pdm', }, @@ -1965,7 +1965,7 @@ QBShared.Vehicles = { ['model'] = 'baller6', ['price'] = 82000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `baller6`, ['shop'] = 'pdm', }, @@ -1975,7 +1975,7 @@ QBShared.Vehicles = { ['model'] = 'bjxl', ['price'] = 19000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `bjxl`, ['shop'] = 'pdm', }, @@ -1985,7 +1985,7 @@ QBShared.Vehicles = { ['model'] = 'cavalcade', ['price'] = 14000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `cavalcade`, ['shop'] = 'pdm', }, @@ -1995,7 +1995,7 @@ QBShared.Vehicles = { ['model'] = 'cavalcade2', ['price'] = 16500, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `cavalcade2`, ['shop'] = 'pdm', }, @@ -2005,7 +2005,7 @@ QBShared.Vehicles = { ['model'] = 'contender', ['price'] = 35000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `contender`, ['shop'] = 'pdm', }, @@ -2015,7 +2015,7 @@ QBShared.Vehicles = { ['model'] = 'dubsta', ['price'] = 19000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `dubsta`, ['shop'] = 'pdm', }, @@ -2025,7 +2025,7 @@ QBShared.Vehicles = { ['model'] = 'dubsta2', ['price'] = 19500, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `dubsta2`, ['shop'] = 'pdm', }, @@ -2035,7 +2035,7 @@ QBShared.Vehicles = { ['model'] = 'fq2', ['price'] = 18500, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `fq2`, ['shop'] = 'pdm', }, @@ -2045,7 +2045,7 @@ QBShared.Vehicles = { ['model'] = 'granger', ['price'] = 22000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `granger`, ['shop'] = 'pdm', }, @@ -2055,7 +2055,7 @@ QBShared.Vehicles = { ['model'] = 'gresley', ['price'] = 25000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `gresley`, ['shop'] = 'pdm', }, @@ -2065,7 +2065,7 @@ QBShared.Vehicles = { ['model'] = 'habanero', ['price'] = 20000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `habanero`, ['shop'] = 'pdm', }, @@ -2075,7 +2075,7 @@ QBShared.Vehicles = { ['model'] = 'huntley', ['price'] = 24500, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `huntley`, ['shop'] = 'pdm', }, @@ -2085,7 +2085,7 @@ QBShared.Vehicles = { ['model'] = 'landstalker', ['price'] = 12000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `landstalker`, ['shop'] = 'pdm', }, @@ -2095,7 +2095,7 @@ QBShared.Vehicles = { ['model'] = 'landstalker2', ['price'] = 26000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `landstalker2`, ['shop'] = 'pdm', }, @@ -2115,7 +2115,7 @@ QBShared.Vehicles = { ['model'] = 'novak', ['price'] = 70000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `novak`, ['shop'] = 'pdm', }, @@ -2125,7 +2125,7 @@ QBShared.Vehicles = { ['model'] = 'patriot', ['price'] = 21000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `patriot`, ['shop'] = 'pdm', }, @@ -2135,7 +2135,7 @@ QBShared.Vehicles = { ['model'] = 'radi', ['price'] = 18000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `radi`, ['shop'] = 'pdm', }, @@ -2145,7 +2145,7 @@ QBShared.Vehicles = { ['model'] = 'rebla', ['price'] = 21000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `rebla`, ['shop'] = 'pdm', }, @@ -2155,7 +2155,7 @@ QBShared.Vehicles = { ['model'] = 'rocoto', ['price'] = 13000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `rocoto`, ['shop'] = 'pdm', }, @@ -2165,7 +2165,7 @@ QBShared.Vehicles = { ['model'] = 'seminole', ['price'] = 20000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `seminole`, ['shop'] = 'pdm', }, @@ -2175,7 +2175,7 @@ QBShared.Vehicles = { ['model'] = 'seminole2', ['price'] = 13000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `seminole2`, ['shop'] = 'pdm', }, @@ -2185,7 +2185,7 @@ QBShared.Vehicles = { ['model'] = 'serrano', ['price'] = 48000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `serrano`, ['shop'] = 'pdm', }, @@ -2195,7 +2195,7 @@ QBShared.Vehicles = { ['model'] = 'toros', ['price'] = 65000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `toros`, ['shop'] = 'pdm', }, @@ -2205,7 +2205,7 @@ QBShared.Vehicles = { ['model'] = 'xls', ['price'] = 17000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `xls`, ['shop'] = 'pdm', }, @@ -2215,7 +2215,7 @@ QBShared.Vehicles = { ['model'] = 'granger2', ['price'] = 221000, ['category'] = 'suvs', - ['categoryLabel'] = 'suvs', + ['categoryLabel'] = 'SUVs', ['hash'] = `granger2`, ['shop'] = 'pdm', }, From fd86efbe1b5f9482c9fe6ad4791859daadec0631 Mon Sep 17 00:00:00 2001 From: David Malchin Date: Sat, 8 Oct 2022 03:52:59 +0300 Subject: [PATCH 07/22] Raise server-side error on database timeout --- server/events.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/server/events.lua b/server/events.lua index 406fe98..a4bc55d 100644 --- a/server/events.lua +++ b/server/events.lua @@ -85,6 +85,7 @@ local function onPlayerConnecting(name, _, deferrals) while databasePromise.state == 0 do -- while database promise is pending if os.clock() - databaseTime > 30 then -- if 30 seconds were spent waiting for the database deferrals.done(Lang:t('error.connecting_database_timeout')) + error(Lang:t('error.connecting_database_timeout')) break end Wait(1000) From bd30889c1c0f8bef68b61f127dc707ab7ab1a8ad Mon Sep 17 00:00:00 2001 From: David Malchin Date: Sat, 8 Oct 2022 03:53:25 +0300 Subject: [PATCH 08/22] Improve comments --- server/events.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/server/events.lua b/server/events.lua index a4bc55d..80bdbcd 100644 --- a/server/events.lua +++ b/server/events.lua @@ -50,6 +50,7 @@ local function onPlayerConnecting(name, _, deferrals) local databaseTime = os.clock() local databasePromise = promise.new() + -- conduct database-dependant checks CreateThread(function() deferrals.update(string.format(Lang:t('info.checking_ban'), name)) local databaseSuccess, databaseError = pcall(function() @@ -74,6 +75,7 @@ local function onPlayerConnecting(name, _, deferrals) databasePromise:resolve() end) + -- wait for database to finish databasePromise:next(function() deferrals.update(string.format(Lang:t('info.join_server'), name)) deferrals.done() @@ -81,9 +83,10 @@ local function onPlayerConnecting(name, _, deferrals) deferrals.done(Lang:t('error.connecting_database_error')) print('^1' .. databaseError) end) - - while databasePromise.state == 0 do -- while database promise is pending - if os.clock() - databaseTime > 30 then -- if 30 seconds were spent waiting for the database + + -- if conducting checks for too long then raise error + while databasePromise.state == 0 do + if os.clock() - databaseTime > 30 then deferrals.done(Lang:t('error.connecting_database_timeout')) error(Lang:t('error.connecting_database_timeout')) break From 2caa8787d47365af5ac51d35a29c6b2ca20cf9c1 Mon Sep 17 00:00:00 2001 From: r0adra93 Date: Fri, 14 Oct 2022 23:14:58 -0400 Subject: [PATCH 09/22] Update vehicles.lua added commercial vehicles to the lua. --- shared/vehicles.lua | 330 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 330 insertions(+) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 2cf753d..1ed1943 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -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 From 93715043eac78f69c580d41325b4c076a269d433 Mon Sep 17 00:00:00 2001 From: R0adRa93 Date: Sun, 16 Oct 2022 10:44:31 -0400 Subject: [PATCH 10/22] Update vehicles.lua fixed linting issues --- shared/vehicles.lua | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 1ed1943..7cebea6 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -11,7 +11,7 @@ QBShared.Vehicles = { ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', ['hash'] = `asbo`, - ['shop'] = {'pdm','luxury'}, + ['shop'] = {'pdm'}, }, ['blista'] = { ['name'] = 'Blista', @@ -4414,16 +4414,6 @@ QBShared.Vehicles = { ['hash'] = `youga4`, ['shop'] = 'pdm', }, - ['mule5'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Mule', - ['brand'] = 'Box Truck', - ['model'] = 'mule5', - ['price'] = 221000, - ['category'] = 'vans', - ['categoryLabel'] = 'Vans', - ['hash'] = `mule5`, - ['shop'] = 'pdm', - }, -- Utility ['sadler'] = { ['name'] = 'Sadler', @@ -4435,16 +4425,6 @@ QBShared.Vehicles = { ['hash'] = `sadler`, ['shop'] = 'pdm', }, - ['guardian'] = { - ['name'] = 'Guardian', - ['brand'] = 'Annis', - ['price'] = 21000, - ['category'] = 'offroad', - ['categoryLabel'] = 'Off Road', - ['model'] = 'guardian', - ['hash'] = `guardian`, - ['shop'] = 'pdm', - }, ['slamtruck'] = { ['name'] = 'Slam Truck', ['brand'] = 'Vapid', @@ -5348,16 +5328,6 @@ QBShared.Vehicles = { ['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', From 235e15abc4514185980d95a42b9156924357a5c2 Mon Sep 17 00:00:00 2001 From: R0adRa93 Date: Sun, 16 Oct 2022 10:49:06 -0400 Subject: [PATCH 11/22] Update vehicles.lua replaced /t with /s/s/s/s --- shared/vehicles.lua | 8790 +++++++++++++++++++++---------------------- 1 file changed, 4395 insertions(+), 4395 deletions(-) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 7cebea6..627b5ae 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -2,4893 +2,4893 @@ QBShared = QBShared or {} QBShared.VehicleHashes = {} QBShared.Vehicles = { - --- Compacts - ['asbo'] = { - ['name'] = 'Asbo', - ['brand'] = 'Maxwell', - ['model'] = 'asbo', - ['price'] = 4000, - ['category'] = 'compacts', + --- Compacts + ['asbo'] = { + ['name'] = 'Asbo', + ['brand'] = 'Maxwell', + ['model'] = 'asbo', + ['price'] = 4000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `asbo`, - ['shop'] = {'pdm'}, - }, - ['blista'] = { - ['name'] = 'Blista', - ['brand'] = 'Dinka', - ['model'] = 'blista', - ['price'] = 13000, - ['category'] = 'compacts', + ['hash'] = `asbo`, + ['shop'] = {'pdm'}, + }, + ['blista'] = { + ['name'] = 'Blista', + ['brand'] = 'Dinka', + ['model'] = 'blista', + ['price'] = 13000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `blista`, - ['shop'] = 'pdm', - }, - ['brioso'] = { - ['name'] = 'Brioso R/A', - ['brand'] = 'Grotti', - ['model'] = 'brioso', - ['price'] = 20000, - ['category'] = 'compacts', + ['hash'] = `blista`, + ['shop'] = 'pdm', + }, + ['brioso'] = { + ['name'] = 'Brioso R/A', + ['brand'] = 'Grotti', + ['model'] = 'brioso', + ['price'] = 20000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `brioso`, - ['shop'] = 'pdm', - }, - ['club'] = { - ['name'] = 'Club', - ['brand'] = 'BF', - ['model'] = 'club', - ['price'] = 8000, - ['category'] = 'compacts', + ['hash'] = `brioso`, + ['shop'] = 'pdm', + }, + ['club'] = { + ['name'] = 'Club', + ['brand'] = 'BF', + ['model'] = 'club', + ['price'] = 8000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `club`, - ['shop'] = 'pdm', - }, - ['dilettante'] = { - ['name'] = 'Dilettante', - ['brand'] = 'Karin', - ['model'] = 'dilettante', - ['price'] = 9000, - ['category'] = 'compacts', + ['hash'] = `club`, + ['shop'] = 'pdm', + }, + ['dilettante'] = { + ['name'] = 'Dilettante', + ['brand'] = 'Karin', + ['model'] = 'dilettante', + ['price'] = 9000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `dilettante`, - ['shop'] = 'pdm', - }, - ['dilettante2'] = { - ['name'] = 'Dilettante Patrol', - ['brand'] = 'Karin', - ['model'] = 'dilettante2', - ['price'] = 12000, - ['category'] = 'compacts', + ['hash'] = `dilettante`, + ['shop'] = 'pdm', + }, + ['dilettante2'] = { + ['name'] = 'Dilettante Patrol', + ['brand'] = 'Karin', + ['model'] = 'dilettante2', + ['price'] = 12000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `dilettante2`, - ['shop'] = 'pdm', - }, - ['kanjo'] = { - ['name'] = 'Blista Kanjo', - ['brand'] = 'Dinka', - ['model'] = 'kanjo', - ['price'] = 12000, - ['category'] = 'compacts', + ['hash'] = `dilettante2`, + ['shop'] = 'pdm', + }, + ['kanjo'] = { + ['name'] = 'Blista Kanjo', + ['brand'] = 'Dinka', + ['model'] = 'kanjo', + ['price'] = 12000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `kanjo`, - ['shop'] = 'pdm', - }, - ['issi2'] = { - ['name'] = 'Issi', - ['brand'] = 'Weeny', - ['model'] = 'issi2', - ['price'] = 7000, - ['category'] = 'compacts', + ['hash'] = `kanjo`, + ['shop'] = 'pdm', + }, + ['issi2'] = { + ['name'] = 'Issi', + ['brand'] = 'Weeny', + ['model'] = 'issi2', + ['price'] = 7000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `issi2`, - ['shop'] = 'pdm', - }, - ['issi3'] = { - ['name'] = 'Issi Classic', - ['brand'] = 'Weeny', - ['model'] = 'issi3', - ['price'] = 5000, - ['category'] = 'compacts', + ['hash'] = `issi2`, + ['shop'] = 'pdm', + }, + ['issi3'] = { + ['name'] = 'Issi Classic', + ['brand'] = 'Weeny', + ['model'] = 'issi3', + ['price'] = 5000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `issi3`, - ['shop'] = 'pdm', - }, - ['issi4'] = { --DLC - ['name'] = 'Issi Arena', - ['brand'] = 'Weeny', - ['model'] = 'issi4', - ['price'] = 80000, - ['category'] = 'compacts', + ['hash'] = `issi3`, + ['shop'] = 'pdm', + }, + ['issi4'] = { --DLC + ['name'] = 'Issi Arena', + ['brand'] = 'Weeny', + ['model'] = 'issi4', + ['price'] = 80000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `issi4`, - ['shop'] = 'pdm', - }, - ['issi5'] = { --DLC - ['name'] = 'Issi Arena', - ['brand'] = 'Weeny', - ['model'] = 'issi5', - ['price'] = 80000, - ['category'] = 'compacts', + ['hash'] = `issi4`, + ['shop'] = 'pdm', + }, + ['issi5'] = { --DLC + ['name'] = 'Issi Arena', + ['brand'] = 'Weeny', + ['model'] = 'issi5', + ['price'] = 80000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `issi5`, - ['shop'] = 'pdm', - }, - ['issi6'] = { --DLC - ['name'] = 'Issi Arena', - ['brand'] = 'Weeny', - ['model'] = 'issi6', - ['price'] = 80000, - ['category'] = 'compacts', + ['hash'] = `issi5`, + ['shop'] = 'pdm', + }, + ['issi6'] = { --DLC + ['name'] = 'Issi Arena', + ['brand'] = 'Weeny', + ['model'] = 'issi6', + ['price'] = 80000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `issi6`, - ['shop'] = 'pdm', - }, - ['panto'] = { - ['name'] = 'Panto', - ['brand'] = 'Benefactor', - ['model'] = 'panto', - ['price'] = 3200, - ['category'] = 'compacts', + ['hash'] = `issi6`, + ['shop'] = 'pdm', + }, + ['panto'] = { + ['name'] = 'Panto', + ['brand'] = 'Benefactor', + ['model'] = 'panto', + ['price'] = 3200, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `panto`, - ['shop'] = 'pdm', - }, - ['prairie'] = { - ['name'] = 'Prairie', - ['brand'] = 'Bollokan', - ['model'] = 'prairie', - ['price'] = 30000, - ['category'] = 'compacts', + ['hash'] = `panto`, + ['shop'] = 'pdm', + }, + ['prairie'] = { + ['name'] = 'Prairie', + ['brand'] = 'Bollokan', + ['model'] = 'prairie', + ['price'] = 30000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `prairie`, - ['shop'] = 'pdm', - }, - ['rhapsody'] = { - ['name'] = 'Rhapsody', - ['brand'] = 'Declasse', - ['model'] = 'rhapsody', - ['price'] = 10000, - ['category'] = 'compacts', + ['hash'] = `prairie`, + ['shop'] = 'pdm', + }, + ['rhapsody'] = { + ['name'] = 'Rhapsody', + ['brand'] = 'Declasse', + ['model'] = 'rhapsody', + ['price'] = 10000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `rhapsody`, - ['shop'] = 'pdm', - }, - ['brioso2'] = { - ['name'] = 'Brioso 300', - ['brand'] = 'Grotti', - ['model'] = 'brioso2', - ['price'] = 12000, - ['category'] = 'compacts', + ['hash'] = `rhapsody`, + ['shop'] = 'pdm', + }, + ['brioso2'] = { + ['name'] = 'Brioso 300', + ['brand'] = 'Grotti', + ['model'] = 'brioso2', + ['price'] = 12000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `brioso2`, - ['shop'] = 'pdm', - }, - ['weevil'] = { - ['name'] = 'Weevil', - ['brand'] = 'BF', - ['model'] = 'weevil', - ['price'] = 9000, - ['category'] = 'compacts', + ['hash'] = `brioso2`, + ['shop'] = 'pdm', + }, + ['weevil'] = { + ['name'] = 'Weevil', + ['brand'] = 'BF', + ['model'] = 'weevil', + ['price'] = 9000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `weevil`, - ['shop'] = 'pdm', - }, - --- Coupes - ['cogcabrio'] = { - ['name'] = 'Cognoscenti Cabrio', - ['brand'] = 'Enus', - ['model'] = 'cogcabrio', - ['price'] = 30000, - ['category'] = 'coupes', + ['hash'] = `weevil`, + ['shop'] = 'pdm', + }, + --- Coupes + ['cogcabrio'] = { + ['name'] = 'Cognoscenti Cabrio', + ['brand'] = 'Enus', + ['model'] = 'cogcabrio', + ['price'] = 30000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `cogcabrio`, - ['shop'] = 'pdm', - }, - ['exemplar'] = { - ['name'] = 'Exemplar', - ['brand'] = 'Dewbauchee', - ['model'] = 'exemplar', - ['price'] = 40000, - ['category'] = 'coupes', + ['hash'] = `cogcabrio`, + ['shop'] = 'pdm', + }, + ['exemplar'] = { + ['name'] = 'Exemplar', + ['brand'] = 'Dewbauchee', + ['model'] = 'exemplar', + ['price'] = 40000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `exemplar`, - ['shop'] = 'pdm', - }, - ['f620'] = { - ['name'] = 'F620', - ['brand'] = 'Ocelot', - ['model'] = 'f620', - ['price'] = 32500, - ['category'] = 'coupes', + ['hash'] = `exemplar`, + ['shop'] = 'pdm', + }, + ['f620'] = { + ['name'] = 'F620', + ['brand'] = 'Ocelot', + ['model'] = 'f620', + ['price'] = 32500, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `f620`, - ['shop'] = 'pdm', - }, - ['felon'] = { - ['name'] = 'Felon', - ['brand'] = 'Lampadati', - ['model'] = 'felon', - ['price'] = 31000, - ['category'] = 'coupes', + ['hash'] = `f620`, + ['shop'] = 'pdm', + }, + ['felon'] = { + ['name'] = 'Felon', + ['brand'] = 'Lampadati', + ['model'] = 'felon', + ['price'] = 31000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `felon`, - ['shop'] = 'pdm', - }, - ['felon2'] = { - ['name'] = 'Felon GT', - ['brand'] = 'Lampadati', - ['model'] = 'felon2', - ['price'] = 37000, - ['category'] = 'coupes', + ['hash'] = `felon`, + ['shop'] = 'pdm', + }, + ['felon2'] = { + ['name'] = 'Felon GT', + ['brand'] = 'Lampadati', + ['model'] = 'felon2', + ['price'] = 37000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `felon2`, - ['shop'] = 'pdm', - }, - ['jackal'] = { - ['name'] = 'Jackal', - ['brand'] = 'Ocelot', - ['model'] = 'jackal', - ['price'] = 19000, - ['category'] = 'coupes', + ['hash'] = `felon2`, + ['shop'] = 'pdm', + }, + ['jackal'] = { + ['name'] = 'Jackal', + ['brand'] = 'Ocelot', + ['model'] = 'jackal', + ['price'] = 19000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `jackal`, - ['shop'] = 'pdm', - }, - ['oracle'] = { - ['name'] = 'Oracle', - ['brand'] = 'Ubermacht', - ['model'] = 'oracle', - ['price'] = 22000, - ['category'] = 'sedans', + ['hash'] = `jackal`, + ['shop'] = 'pdm', + }, + ['oracle'] = { + ['name'] = 'Oracle', + ['brand'] = 'Ubermacht', + ['model'] = 'oracle', + ['price'] = 22000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `oracle`, - ['shop'] = 'pdm', - }, - ['oracle2'] = { - ['name'] = 'Oracle XS', - ['brand'] = 'Übermacht', - ['model'] = 'oracle2', - ['price'] = 28000, - ['category'] = 'coupes', + ['hash'] = `oracle`, + ['shop'] = 'pdm', + }, + ['oracle2'] = { + ['name'] = 'Oracle XS', + ['brand'] = 'Übermacht', + ['model'] = 'oracle2', + ['price'] = 28000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `oracle2`, - ['shop'] = 'pdm', - }, - ['sentinel'] = { - ['name'] = 'Sentinel', - ['brand'] = 'Übermacht', - ['model'] = 'sentinel', - ['price'] = 30000, - ['category'] = 'coupes', + ['hash'] = `oracle2`, + ['shop'] = 'pdm', + }, + ['sentinel'] = { + ['name'] = 'Sentinel', + ['brand'] = 'Übermacht', + ['model'] = 'sentinel', + ['price'] = 30000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `sentinel`, - ['shop'] = 'pdm', - }, - ['sentinel2'] = { - ['name'] = 'Sentinel XS', - ['brand'] = ' Übermacht', - ['model'] = 'sentinel2', - ['price'] = 33000, - ['category'] = 'coupes', + ['hash'] = `sentinel`, + ['shop'] = 'pdm', + }, + ['sentinel2'] = { + ['name'] = 'Sentinel XS', + ['brand'] = ' Übermacht', + ['model'] = 'sentinel2', + ['price'] = 33000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `sentinel2`, - ['shop'] = 'pdm', - }, - ['windsor'] = { - ['name'] = 'Windsor', - ['brand'] = 'Enus', - ['model'] = 'windsor', - ['price'] = 27000, - ['category'] = 'coupes', + ['hash'] = `sentinel2`, + ['shop'] = 'pdm', + }, + ['windsor'] = { + ['name'] = 'Windsor', + ['brand'] = 'Enus', + ['model'] = 'windsor', + ['price'] = 27000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `windsor`, - ['shop'] = 'pdm', - }, - ['windsor2'] = { - ['name'] = 'Windsor Drop', - ['brand'] = 'Enus', - ['model'] = 'windsor2', - ['price'] = 34000, - ['category'] = 'coupes', + ['hash'] = `windsor`, + ['shop'] = 'pdm', + }, + ['windsor2'] = { + ['name'] = 'Windsor Drop', + ['brand'] = 'Enus', + ['model'] = 'windsor2', + ['price'] = 34000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `windsor2`, - ['shop'] = 'pdm', - }, - ['zion'] = { - ['name'] = 'Zion', - ['brand'] = 'Übermacht', - ['model'] = 'zion', - ['price'] = 22000, - ['category'] = 'coupes', + ['hash'] = `windsor2`, + ['shop'] = 'pdm', + }, + ['zion'] = { + ['name'] = 'Zion', + ['brand'] = 'Übermacht', + ['model'] = 'zion', + ['price'] = 22000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `zion`, - ['shop'] = 'pdm', - }, - ['zion2'] = { - ['name'] = 'Zion Cabrio', - ['brand'] = 'Übermacht', - ['model'] = 'zion2', - ['price'] = 28000, - ['category'] = 'coupes', + ['hash'] = `zion`, + ['shop'] = 'pdm', + }, + ['zion2'] = { + ['name'] = 'Zion Cabrio', + ['brand'] = 'Übermacht', + ['model'] = 'zion2', + ['price'] = 28000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `zion2`, - ['shop'] = 'pdm', - }, - ['previon'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Previon', - ['brand'] = 'Karin', - ['model'] = 'previon', - ['price'] = 149000, - ['category'] = 'coupes', + ['hash'] = `zion2`, + ['shop'] = 'pdm', + }, + ['previon'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Previon', + ['brand'] = 'Karin', + ['model'] = 'previon', + ['price'] = 149000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `previon`, - ['shop'] = 'pdm', - }, - ['champion'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Champion', - ['brand'] = 'Dewbauchee', - ['model'] = 'champion', - ['price'] = 205000, - ['category'] = 'coupes', + ['hash'] = `previon`, + ['shop'] = 'pdm', + }, + ['champion'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Champion', + ['brand'] = 'Dewbauchee', + ['model'] = 'champion', + ['price'] = 205000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `champion`, - ['shop'] = 'pdm', - }, - ['ignus'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Ignus', - ['brand'] = 'Pegassi', - ['model'] = 'ignus', - ['price'] = 1120000, - ['category'] = 'coupes', + ['hash'] = `champion`, + ['shop'] = 'pdm', + }, + ['ignus'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Ignus', + ['brand'] = 'Pegassi', + ['model'] = 'ignus', + ['price'] = 1120000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `ignus`, - ['shop'] = 'pdm', - }, - ['zeno'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Zeno', - ['brand'] = 'Overflod', - ['model'] = 'zeno', - ['price'] = 1350000, - ['category'] = 'coupes', + ['hash'] = `ignus`, + ['shop'] = 'pdm', + }, + ['zeno'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Zeno', + ['brand'] = 'Overflod', + ['model'] = 'zeno', + ['price'] = 1350000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `zeno`, - ['shop'] = 'pdm', - }, - --- Cycles - ['bmx'] = { - ['name'] = 'BMX', + ['hash'] = `zeno`, + ['shop'] = 'pdm', + }, + --- Cycles + ['bmx'] = { + ['name'] = 'BMX', ['brand'] = 'Bike', - ['model'] = 'bmx', - ['price'] = 160, - ['category'] = 'cycles', + ['model'] = 'bmx', + ['price'] = 160, + ['category'] = 'cycles', ['categoryLabel'] = 'Cycles', - ['hash'] = `bmx`, - ['shop'] = 'pdm', - }, - ['cruiser'] = { - ['name'] = 'Cruiser', + ['hash'] = `bmx`, + ['shop'] = 'pdm', + }, + ['cruiser'] = { + ['name'] = 'Cruiser', ['brand'] = 'Bike', - ['model'] = 'cruiser', - ['price'] = 510, - ['category'] = 'cycles', + ['model'] = 'cruiser', + ['price'] = 510, + ['category'] = 'cycles', ['categoryLabel'] = 'Cycles', - ['hash'] = `cruiser`, - ['shop'] = 'pdm', - }, - ['fixter'] = { - ['name'] = 'Fixter', + ['hash'] = `cruiser`, + ['shop'] = 'pdm', + }, + ['fixter'] = { + ['name'] = 'Fixter', ['brand'] = 'Bike', - ['model'] = 'fixter', - ['price'] = 225, - ['category'] = 'cycles', + ['model'] = 'fixter', + ['price'] = 225, + ['category'] = 'cycles', ['categoryLabel'] = 'Cycles', - ['hash'] = `fixter`, - ['shop'] = 'pdm', - }, - ['scorcher'] = { - ['name'] = 'Scorcher', + ['hash'] = `fixter`, + ['shop'] = 'pdm', + }, + ['scorcher'] = { + ['name'] = 'Scorcher', ['brand'] = 'Bike', - ['model'] = 'scorcher', - ['price'] = 280, - ['category'] = 'cycles', + ['model'] = 'scorcher', + ['price'] = 280, + ['category'] = 'cycles', ['categoryLabel'] = 'Cycles', - ['hash'] = `scorcher`, - ['shop'] = 'pdm', - }, - ['tribike'] = { - ['name'] = 'Tri Bike', + ['hash'] = `scorcher`, + ['shop'] = 'pdm', + }, + ['tribike'] = { + ['name'] = 'Tri Bike', ['brand'] = 'Bike', - ['model'] = 'tribike', - ['price'] = 500, - ['category'] = 'cycles', + ['model'] = 'tribike', + ['price'] = 500, + ['category'] = 'cycles', ['categoryLabel'] = 'Cycles', - ['hash'] = `tribike`, - ['shop'] = 'pdm', - }, - ['tribike2'] = { - ['name'] = 'Tri Bike 2', + ['hash'] = `tribike`, + ['shop'] = 'pdm', + }, + ['tribike2'] = { + ['name'] = 'Tri Bike 2', ['brand'] = 'Bike', - ['model'] = 'tribike2', - ['price'] = 700, - ['category'] = 'cycles', + ['model'] = 'tribike2', + ['price'] = 700, + ['category'] = 'cycles', ['categoryLabel'] = 'Cycles', - ['hash'] = `tribike2`, - ['shop'] = 'pdm', - }, - ['tribike3'] = { - ['name'] = 'Tri Bike 3', + ['hash'] = `tribike2`, + ['shop'] = 'pdm', + }, + ['tribike3'] = { + ['name'] = 'Tri Bike 3', ['brand'] = 'Bike', - ['model'] = 'tribike3', - ['price'] = 520, - ['category'] = 'cycles', + ['model'] = 'tribike3', + ['price'] = 520, + ['category'] = 'cycles', ['categoryLabel'] = 'Cycles', - ['hash'] = `tribike3`, - ['shop'] = 'pdm', - }, - --- Motorcycles - ['akuma'] = { - ['name'] = 'Akuma', - ['brand'] = 'Dinka', - ['model'] = 'akuma', - ['price'] = 55000, - ['category'] = 'motorcycles', + ['hash'] = `tribike3`, + ['shop'] = 'pdm', + }, + --- Motorcycles + ['akuma'] = { + ['name'] = 'Akuma', + ['brand'] = 'Dinka', + ['model'] = 'akuma', + ['price'] = 55000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `akuma`, - ['shop'] = 'pdm', - }, - ['avarus'] = { - ['name'] = 'Avarus', - ['brand'] = 'LCC', - ['model'] = 'avarus', - ['price'] = 20000, - ['category'] = 'motorcycles', + ['hash'] = `akuma`, + ['shop'] = 'pdm', + }, + ['avarus'] = { + ['name'] = 'Avarus', + ['brand'] = 'LCC', + ['model'] = 'avarus', + ['price'] = 20000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `avarus`, - ['shop'] = 'pdm', - }, - ['bagger'] = { - ['name'] = 'Bagger', - ['brand'] = 'WMC', - ['model'] = 'bagger', - ['price'] = 13500, - ['category'] = 'motorcycles', + ['hash'] = `avarus`, + ['shop'] = 'pdm', + }, + ['bagger'] = { + ['name'] = 'Bagger', + ['brand'] = 'WMC', + ['model'] = 'bagger', + ['price'] = 13500, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `bagger`, - ['shop'] = 'pdm', - }, - ['bati'] = { - ['name'] = 'Bati 801', - ['brand'] = 'Pegassi', - ['model'] = 'bati', - ['price'] = 24000, - ['category'] = 'motorcycles', + ['hash'] = `bagger`, + ['shop'] = 'pdm', + }, + ['bati'] = { + ['name'] = 'Bati 801', + ['brand'] = 'Pegassi', + ['model'] = 'bati', + ['price'] = 24000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `bati`, - ['shop'] = 'pdm', - }, - ['bati2'] = { - ['name'] = 'Bati 801RR', - ['brand'] = 'Pegassi', - ['model'] = 'bati2', - ['price'] = 19000, - ['category'] = 'motorcycles', + ['hash'] = `bati`, + ['shop'] = 'pdm', + }, + ['bati2'] = { + ['name'] = 'Bati 801RR', + ['brand'] = 'Pegassi', + ['model'] = 'bati2', + ['price'] = 19000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `bati2`, - ['shop'] = 'pdm', - }, - ['bf400'] = { - ['name'] = 'BF400', - ['brand'] = 'Nagasaki', - ['model'] = 'bf400', - ['price'] = 22000, - ['category'] = 'motorcycles', + ['hash'] = `bati2`, + ['shop'] = 'pdm', + }, + ['bf400'] = { + ['name'] = 'BF400', + ['brand'] = 'Nagasaki', + ['model'] = 'bf400', + ['price'] = 22000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `bf400`, - ['shop'] = 'pdm', - }, - ['carbonrs'] = { - ['name'] = 'Carbon RS', - ['brand'] = 'Nagasaki', - ['model'] = 'carbonrs', - ['price'] = 22000, - ['category'] = 'motorcycles', + ['hash'] = `bf400`, + ['shop'] = 'pdm', + }, + ['carbonrs'] = { + ['name'] = 'Carbon RS', + ['brand'] = 'Nagasaki', + ['model'] = 'carbonrs', + ['price'] = 22000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `carbonrs`, - ['shop'] = 'pdm', - }, - ['chimera'] = { - ['name'] = 'Chimera', - ['brand'] = 'Nagasaki', - ['model'] = 'chimera', - ['price'] = 21000, - ['category'] = 'motorcycles', + ['hash'] = `carbonrs`, + ['shop'] = 'pdm', + }, + ['chimera'] = { + ['name'] = 'Chimera', + ['brand'] = 'Nagasaki', + ['model'] = 'chimera', + ['price'] = 21000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `chimera`, - ['shop'] = 'pdm', - }, - ['cliffhanger'] = { - ['name'] = 'Cliffhanger', - ['brand'] = 'Western', - ['model'] = 'cliffhanger', - ['price'] = 28500, - ['category'] = 'motorcycles', + ['hash'] = `chimera`, + ['shop'] = 'pdm', + }, + ['cliffhanger'] = { + ['name'] = 'Cliffhanger', + ['brand'] = 'Western', + ['model'] = 'cliffhanger', + ['price'] = 28500, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `cliffhanger`, - ['shop'] = 'pdm', - }, - ['daemon'] = { - ['name'] = 'Daemon', - ['brand'] = 'WMC', - ['model'] = 'daemon', - ['price'] = 14000, - ['category'] = 'motorcycles', + ['hash'] = `cliffhanger`, + ['shop'] = 'pdm', + }, + ['daemon'] = { + ['name'] = 'Daemon', + ['brand'] = 'WMC', + ['model'] = 'daemon', + ['price'] = 14000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `daemon`, - ['shop'] = 'pdm', - }, - ['daemon2'] = { - ['name'] = 'Daemon Custom', - ['brand'] = 'Western', - ['model'] = 'daemon2', - ['price'] = 23000, - ['category'] = 'motorcycles', + ['hash'] = `daemon`, + ['shop'] = 'pdm', + }, + ['daemon2'] = { + ['name'] = 'Daemon Custom', + ['brand'] = 'Western', + ['model'] = 'daemon2', + ['price'] = 23000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `daemon2`, - ['shop'] = 'pdm', - }, - ['defiler'] = { - ['name'] = 'Defiler', - ['brand'] = 'Shitzu', - ['model'] = 'defiler', - ['price'] = 30000, - ['category'] = 'motorcycles', + ['hash'] = `daemon2`, + ['shop'] = 'pdm', + }, + ['defiler'] = { + ['name'] = 'Defiler', + ['brand'] = 'Shitzu', + ['model'] = 'defiler', + ['price'] = 30000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `defiler`, - ['shop'] = 'pdm', - }, - ['deathbike'] = { --DLC - ['name'] = 'deathbike', - ['brand'] = 'deathbike', - ['model'] = 'deathbike', - ['price'] = 30000, - ['category'] = 'motorcycles', + ['hash'] = `defiler`, + ['shop'] = 'pdm', + }, + ['deathbike'] = { --DLC + ['name'] = 'deathbike', + ['brand'] = 'deathbike', + ['model'] = 'deathbike', + ['price'] = 30000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `deathbike`, - ['shop'] = 'pdm', - }, - ['deathbike2'] = { --DLC - ['name'] = 'deathbike2', - ['brand'] = 'deathbike', - ['model'] = 'deathbike2', - ['price'] = 30000, - ['category'] = 'motorcycles', + ['hash'] = `deathbike`, + ['shop'] = 'pdm', + }, + ['deathbike2'] = { --DLC + ['name'] = 'deathbike2', + ['brand'] = 'deathbike', + ['model'] = 'deathbike2', + ['price'] = 30000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `deathbike2`, - ['shop'] = 'pdm', - }, - ['deathbike3'] = { --DLC - ['name'] = 'deathbike3', - ['brand'] = 'deathbike', - ['model'] = 'deathbike3', - ['price'] = 30000, - ['category'] = 'motorcycles', + ['hash'] = `deathbike2`, + ['shop'] = 'pdm', + }, + ['deathbike3'] = { --DLC + ['name'] = 'deathbike3', + ['brand'] = 'deathbike', + ['model'] = 'deathbike3', + ['price'] = 30000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `deathbike3`, - ['shop'] = 'pdm', - }, - ['diablous'] = { - ['name'] = 'Diablous', - ['brand'] = 'Principe', - ['model'] = 'diablous', - ['price'] = 30000, - ['category'] = 'motorcycles', + ['hash'] = `deathbike3`, + ['shop'] = 'pdm', + }, + ['diablous'] = { + ['name'] = 'Diablous', + ['brand'] = 'Principe', + ['model'] = 'diablous', + ['price'] = 30000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `diablous`, - ['shop'] = 'pdm', - }, - ['diablous2'] = { - ['name'] = 'Diablous Custom', - ['brand'] = 'Principe', - ['model'] = 'diablous2', - ['price'] = 38000, - ['category'] = 'motorcycles', + ['hash'] = `diablous`, + ['shop'] = 'pdm', + }, + ['diablous2'] = { + ['name'] = 'Diablous Custom', + ['brand'] = 'Principe', + ['model'] = 'diablous2', + ['price'] = 38000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `diablous2`, - ['shop'] = 'pdm', - }, - ['double'] = { - ['name'] = 'Double-T', - ['brand'] = 'Dinka', - ['model'] = 'double', - ['price'] = 28000, - ['category'] = 'motorcycles', + ['hash'] = `diablous2`, + ['shop'] = 'pdm', + }, + ['double'] = { + ['name'] = 'Double-T', + ['brand'] = 'Dinka', + ['model'] = 'double', + ['price'] = 28000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `double`, - ['shop'] = 'pdm', - }, - ['enduro'] = { - ['name'] = 'Enduro', - ['brand'] = 'Dinka', - ['model'] = 'enduro', - ['price'] = 5500, - ['category'] = 'motorcycles', + ['hash'] = `double`, + ['shop'] = 'pdm', + }, + ['enduro'] = { + ['name'] = 'Enduro', + ['brand'] = 'Dinka', + ['model'] = 'enduro', + ['price'] = 5500, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `enduro`, - ['shop'] = 'pdm', - }, - ['esskey'] = { - ['name'] = 'Esskey', - ['brand'] = 'Pegassi', - ['model'] = 'esskey', - ['price'] = 12000, - ['category'] = 'motorcycles', + ['hash'] = `enduro`, + ['shop'] = 'pdm', + }, + ['esskey'] = { + ['name'] = 'Esskey', + ['brand'] = 'Pegassi', + ['model'] = 'esskey', + ['price'] = 12000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `esskey`, - ['shop'] = 'pdm', - }, - ['faggio'] = { - ['name'] = 'Faggio Sport', - ['brand'] = 'Pegassi', - ['model'] = 'faggio', - ['price'] = 2000, - ['category'] = 'motorcycles', + ['hash'] = `esskey`, + ['shop'] = 'pdm', + }, + ['faggio'] = { + ['name'] = 'Faggio Sport', + ['brand'] = 'Pegassi', + ['model'] = 'faggio', + ['price'] = 2000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `faggio`, - ['shop'] = 'pdm', - }, - ['faggio2'] = { - ['name'] = 'Faggio', - ['brand'] = 'Pegassi', - ['model'] = 'faggio2', - ['price'] = 1900, - ['category'] = 'motorcycles', + ['hash'] = `faggio`, + ['shop'] = 'pdm', + }, + ['faggio2'] = { + ['name'] = 'Faggio', + ['brand'] = 'Pegassi', + ['model'] = 'faggio2', + ['price'] = 1900, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `faggio2`, - ['shop'] = 'pdm', - }, - ['faggio3'] = { - ['name'] = 'Faggio Mod', - ['brand'] = 'Pegassi', - ['model'] = 'faggio3', - ['price'] = 2500, - ['category'] = 'motorcycles', + ['hash'] = `faggio2`, + ['shop'] = 'pdm', + }, + ['faggio3'] = { + ['name'] = 'Faggio Mod', + ['brand'] = 'Pegassi', + ['model'] = 'faggio3', + ['price'] = 2500, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `faggio3`, - ['shop'] = 'pdm', - }, - ['fcr'] = { - ['name'] = 'FCR 1000', - ['brand'] = 'Pegassi', - ['model'] = 'fcr', - ['price'] = 5000, - ['category'] = 'motorcycles', + ['hash'] = `faggio3`, + ['shop'] = 'pdm', + }, + ['fcr'] = { + ['name'] = 'FCR 1000', + ['brand'] = 'Pegassi', + ['model'] = 'fcr', + ['price'] = 5000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `fcr`, - ['shop'] = 'pdm', - }, - ['fcr2'] = { - ['name'] = 'FCR 1000 Custom', - ['brand'] = 'Pegassi', - ['model'] = 'fcr2', - ['price'] = 19000, - ['category'] = 'motorcycles', + ['hash'] = `fcr`, + ['shop'] = 'pdm', + }, + ['fcr2'] = { + ['name'] = 'FCR 1000 Custom', + ['brand'] = 'Pegassi', + ['model'] = 'fcr2', + ['price'] = 19000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `fcr2`, - ['shop'] = 'pdm', - }, - ['gargoyle'] = { - ['name'] = 'Gargoyle', - ['brand'] = 'Western', - ['model'] = 'gargoyle', - ['price'] = 32000, - ['category'] = 'motorcycles', + ['hash'] = `fcr2`, + ['shop'] = 'pdm', + }, + ['gargoyle'] = { + ['name'] = 'Gargoyle', + ['brand'] = 'Western', + ['model'] = 'gargoyle', + ['price'] = 32000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `gargoyle`, - ['shop'] = 'pdm', - }, - ['hakuchou'] = { - ['name'] = 'Hakuchou', - ['brand'] = 'Shitzu', - ['model'] = 'hakuchou', - ['price'] = 17000, - ['category'] = 'motorcycles', + ['hash'] = `gargoyle`, + ['shop'] = 'pdm', + }, + ['hakuchou'] = { + ['name'] = 'Hakuchou', + ['brand'] = 'Shitzu', + ['model'] = 'hakuchou', + ['price'] = 17000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `hakuchou`, - ['shop'] = 'pdm', - }, - ['hakuchou2'] = { - ['name'] = 'Hakuchou Drag', - ['brand'] = 'Shitzu', - ['model'] = 'hakuchou2', - ['price'] = 45000, - ['category'] = 'motorcycles', + ['hash'] = `hakuchou`, + ['shop'] = 'pdm', + }, + ['hakuchou2'] = { + ['name'] = 'Hakuchou Drag', + ['brand'] = 'Shitzu', + ['model'] = 'hakuchou2', + ['price'] = 45000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `hakuchou2`, - ['shop'] = 'pdm', - }, - ['hexer'] = { - ['name'] = 'Hexer', - ['brand'] = 'LCC', - ['model'] = 'hexer', - ['price'] = 16000, - ['category'] = 'motorcycles', + ['hash'] = `hakuchou2`, + ['shop'] = 'pdm', + }, + ['hexer'] = { + ['name'] = 'Hexer', + ['brand'] = 'LCC', + ['model'] = 'hexer', + ['price'] = 16000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `hexer`, - ['shop'] = 'pdm', - }, - ['innovation'] = { - ['name'] = 'Innovation', - ['brand'] = 'LLC', - ['model'] = 'innovation', - ['price'] = 33500, - ['category'] = 'motorcycles', + ['hash'] = `hexer`, + ['shop'] = 'pdm', + }, + ['innovation'] = { + ['name'] = 'Innovation', + ['brand'] = 'LLC', + ['model'] = 'innovation', + ['price'] = 33500, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `innovation`, - ['shop'] = 'pdm', - }, - ['lectro'] = { - ['name'] = 'Lectro', - ['brand'] = 'Principe', - ['model'] = 'lectro', - ['price'] = 28000, - ['category'] = 'motorcycles', + ['hash'] = `innovation`, + ['shop'] = 'pdm', + }, + ['lectro'] = { + ['name'] = 'Lectro', + ['brand'] = 'Principe', + ['model'] = 'lectro', + ['price'] = 28000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `lectro`, - ['shop'] = 'pdm', - }, - ['manchez'] = { - ['name'] = 'Manchez', - ['brand'] = 'Maibatsu', - ['model'] = 'manchez', - ['price'] = 8300, - ['category'] = 'motorcycles', + ['hash'] = `lectro`, + ['shop'] = 'pdm', + }, + ['manchez'] = { + ['name'] = 'Manchez', + ['brand'] = 'Maibatsu', + ['model'] = 'manchez', + ['price'] = 8300, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `manchez`, - ['shop'] = 'pdm', - }, - ['nemesis'] = { - ['name'] = 'Nemesis', - ['brand'] = 'Principe', - ['model'] = 'nemesis', - ['price'] = 20000, - ['category'] = 'motorcycles', + ['hash'] = `manchez`, + ['shop'] = 'pdm', + }, + ['nemesis'] = { + ['name'] = 'Nemesis', + ['brand'] = 'Principe', + ['model'] = 'nemesis', + ['price'] = 20000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `nemesis`, - ['shop'] = 'pdm', - }, - ['nightblade'] = { - ['name'] = 'Nightblade', - ['brand'] = 'WMC', - ['model'] = 'nightblade', - ['price'] = 23000, - ['category'] = 'motorcycles', + ['hash'] = `nemesis`, + ['shop'] = 'pdm', + }, + ['nightblade'] = { + ['name'] = 'Nightblade', + ['brand'] = 'WMC', + ['model'] = 'nightblade', + ['price'] = 23000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `nightblade`, - ['shop'] = 'pdm', - }, - ['oppressor'] = { - ['name'] = 'Oppressor', - ['brand'] = 'Pegassi', - ['model'] = 'oppressor', - ['price'] = 9999999, - ['category'] = 'super', + ['hash'] = `nightblade`, + ['shop'] = 'pdm', + }, + ['oppressor'] = { + ['name'] = 'Oppressor', + ['brand'] = 'Pegassi', + ['model'] = 'oppressor', + ['price'] = 9999999, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `oppressor`, - ['shop'] = 'luxury', - }, - ['pcj'] = { - ['name'] = 'PCJ-600', - ['brand'] = 'Shitzu', - ['model'] = 'pcj', - ['price'] = 15000, - ['category'] = 'motorcycles', + ['hash'] = `oppressor`, + ['shop'] = 'luxury', + }, + ['pcj'] = { + ['name'] = 'PCJ-600', + ['brand'] = 'Shitzu', + ['model'] = 'pcj', + ['price'] = 15000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `pcj`, - ['shop'] = 'pdm', - }, - ['ratbike'] = { - ['name'] = 'Rat Bike', - ['brand'] = 'Western', - ['model'] = 'ratbike', - ['price'] = 3000, - ['category'] = 'motorcycles', + ['hash'] = `pcj`, + ['shop'] = 'pdm', + }, + ['ratbike'] = { + ['name'] = 'Rat Bike', + ['brand'] = 'Western', + ['model'] = 'ratbike', + ['price'] = 3000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `ratbike`, - ['shop'] = 'pdm', - }, - ['ruffian'] = { - ['name'] = 'Ruffian', - ['brand'] = 'Pegassi', - ['model'] = 'ruffian', - ['price'] = 25000, - ['category'] = 'motorcycles', + ['hash'] = `ratbike`, + ['shop'] = 'pdm', + }, + ['ruffian'] = { + ['name'] = 'Ruffian', + ['brand'] = 'Pegassi', + ['model'] = 'ruffian', + ['price'] = 25000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `ruffian`, - ['shop'] = 'pdm', - }, - ['sanchez'] = { - ['name'] = 'Sanchez Livery', - ['brand'] = 'Maibatsu', - ['model'] = 'sanchez', - ['price'] = 5300, - ['category'] = 'motorcycles', + ['hash'] = `ruffian`, + ['shop'] = 'pdm', + }, + ['sanchez'] = { + ['name'] = 'Sanchez Livery', + ['brand'] = 'Maibatsu', + ['model'] = 'sanchez', + ['price'] = 5300, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `sanchez`, - ['shop'] = 'pdm', - }, - ['sanchez2'] = { - ['name'] = 'Sanchez', - ['brand'] = 'Maibatsu', - ['model'] = 'sanchez2', - ['price'] = 5300, - ['category'] = 'motorcycles', + ['hash'] = `sanchez`, + ['shop'] = 'pdm', + }, + ['sanchez2'] = { + ['name'] = 'Sanchez', + ['brand'] = 'Maibatsu', + ['model'] = 'sanchez2', + ['price'] = 5300, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `sanchez2`, - ['shop'] = 'pdm', - }, - ['sanctus'] = { - ['name'] = 'Sanctus', - ['brand'] = 'LCC', - ['model'] = 'sanctus', - ['price'] = 35000, - ['category'] = 'motorcycles', + ['hash'] = `sanchez2`, + ['shop'] = 'pdm', + }, + ['sanctus'] = { + ['name'] = 'Sanctus', + ['brand'] = 'LCC', + ['model'] = 'sanctus', + ['price'] = 35000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `sanctus`, - ['shop'] = 'pdm', - }, - ['shotaro'] = { - ['name'] = 'Shotaro Concept', - ['brand'] = 'Nagasaki', - ['model'] = 'shotaro', - ['price'] = 320000, - ['category'] = 'motorcycles', + ['hash'] = `sanctus`, + ['shop'] = 'pdm', + }, + ['shotaro'] = { + ['name'] = 'Shotaro Concept', + ['brand'] = 'Nagasaki', + ['model'] = 'shotaro', + ['price'] = 320000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `shotaro`, - ['shop'] = 'pdm', - }, - ['sovereign'] = { - ['name'] = 'Sovereign', - ['brand'] = 'WMC', - ['model'] = 'sovereign', - ['price'] = 8000, - ['category'] = 'motorcycles', + ['hash'] = `shotaro`, + ['shop'] = 'pdm', + }, + ['sovereign'] = { + ['name'] = 'Sovereign', + ['brand'] = 'WMC', + ['model'] = 'sovereign', + ['price'] = 8000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `sovereign`, - ['shop'] = 'pdm', - }, - ['stryder'] = { - ['name'] = 'Stryder', - ['brand'] = 'Nagasaki', - ['model'] = 'stryder', - ['price'] = 50000, - ['category'] = 'motorcycles', + ['hash'] = `sovereign`, + ['shop'] = 'pdm', + }, + ['stryder'] = { + ['name'] = 'Stryder', + ['brand'] = 'Nagasaki', + ['model'] = 'stryder', + ['price'] = 50000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `stryder`, - ['shop'] = 'pdm', - }, - ['thrust'] = { - ['name'] = 'Thrust', - ['brand'] = 'Dinka', - ['model'] = 'thrust', - ['price'] = 22000, - ['category'] = 'motorcycles', + ['hash'] = `stryder`, + ['shop'] = 'pdm', + }, + ['thrust'] = { + ['name'] = 'Thrust', + ['brand'] = 'Dinka', + ['model'] = 'thrust', + ['price'] = 22000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `thrust`, - ['shop'] = 'pdm', - }, - ['vader'] = { - ['name'] = 'Vader', - ['brand'] = 'Shitzu', - ['model'] = 'vader', - ['price'] = 7200, - ['category'] = 'motorcycles', + ['hash'] = `thrust`, + ['shop'] = 'pdm', + }, + ['vader'] = { + ['name'] = 'Vader', + ['brand'] = 'Shitzu', + ['model'] = 'vader', + ['price'] = 7200, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `vader`, - ['shop'] = 'pdm', - }, - ['vindicator'] = { - ['name'] = 'Vindicator', - ['brand'] = 'Dinka', - ['model'] = 'vindicator', - ['price'] = 19000, - ['category'] = 'motorcycles', + ['hash'] = `vader`, + ['shop'] = 'pdm', + }, + ['vindicator'] = { + ['name'] = 'Vindicator', + ['brand'] = 'Dinka', + ['model'] = 'vindicator', + ['price'] = 19000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `vindicator`, - ['shop'] = 'pdm', - }, - ['vortex'] = { - ['name'] = 'Vortex', - ['brand'] = 'Pegassi', - ['model'] = 'vortex', - ['price'] = 31000, - ['category'] = 'motorcycles', + ['hash'] = `vindicator`, + ['shop'] = 'pdm', + }, + ['vortex'] = { + ['name'] = 'Vortex', + ['brand'] = 'Pegassi', + ['model'] = 'vortex', + ['price'] = 31000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `vortex`, - ['shop'] = 'pdm', - }, - ['wolfsbane'] = { - ['name'] = 'Wolfsbane', - ['brand'] = 'Western', - ['model'] = 'wolfsbane', - ['price'] = 14000, - ['category'] = 'motorcycles', + ['hash'] = `vortex`, + ['shop'] = 'pdm', + }, + ['wolfsbane'] = { + ['name'] = 'Wolfsbane', + ['brand'] = 'Western', + ['model'] = 'wolfsbane', + ['price'] = 14000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `wolfsbane`, - ['shop'] = 'pdm', - }, - ['zombiea'] = { - ['name'] = 'Zombie Bobber', - ['brand'] = 'Western', - ['model'] = 'zombiea', - ['price'] = 28000, - ['category'] = 'motorcycles', + ['hash'] = `wolfsbane`, + ['shop'] = 'pdm', + }, + ['zombiea'] = { + ['name'] = 'Zombie Bobber', + ['brand'] = 'Western', + ['model'] = 'zombiea', + ['price'] = 28000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `zombiea`, - ['shop'] = 'pdm', - }, - ['zombieb'] = { - ['name'] = 'Zombie Chopper', - ['brand'] = 'Western', - ['model'] = 'zombieb', - ['price'] = 27000, - ['category'] = 'motorcycles', + ['hash'] = `zombiea`, + ['shop'] = 'pdm', + }, + ['zombieb'] = { + ['name'] = 'Zombie Chopper', + ['brand'] = 'Western', + ['model'] = 'zombieb', + ['price'] = 27000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `zombieb`, - ['shop'] = 'pdm', - }, - ['manchez2'] = { - ['name'] = 'Manchez', - ['brand'] = 'Maibatsu', - ['model'] = 'manchez2', - ['price'] = 14000, - ['category'] = 'motorcycles', + ['hash'] = `zombieb`, + ['shop'] = 'pdm', + }, + ['manchez2'] = { + ['name'] = 'Manchez', + ['brand'] = 'Maibatsu', + ['model'] = 'manchez2', + ['price'] = 14000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `manchez2`, - ['shop'] = 'pdm', - }, - ['shinobi'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Shinobi', - ['brand'] = 'Nagasaki', - ['model'] = 'shinobi', - ['price'] = 25000, - ['category'] = 'motorcycles', + ['hash'] = `manchez2`, + ['shop'] = 'pdm', + }, + ['shinobi'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Shinobi', + ['brand'] = 'Nagasaki', + ['model'] = 'shinobi', + ['price'] = 25000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `shinobi`, - ['shop'] = 'pdm', - }, - ['reever'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Reever', - ['brand'] = 'Western', - ['model'] = 'reever', - ['price'] = 25000, - ['category'] = 'motorcycles', + ['hash'] = `shinobi`, + ['shop'] = 'pdm', + }, + ['reever'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Reever', + ['brand'] = 'Western', + ['model'] = 'reever', + ['price'] = 25000, + ['category'] = 'motorcycles', ['categoryLabel'] = 'Motorcycles', - ['hash'] = `reever`, - ['shop'] = 'pdm', - }, - --- Muscle - ['blade'] = { - ['name'] = 'Blade', - ['brand'] = 'Vapid', - ['model'] = 'blade', - ['price'] = 23500, - ['category'] = 'muscle', + ['hash'] = `reever`, + ['shop'] = 'pdm', + }, + --- Muscle + ['blade'] = { + ['name'] = 'Blade', + ['brand'] = 'Vapid', + ['model'] = 'blade', + ['price'] = 23500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `blade`, - ['shop'] = 'pdm', - }, - ['buccaneer'] = { - ['name'] = 'Buccaneer', - ['brand'] = 'Albany', - ['model'] = 'buccaneer', - ['price'] = 22500, - ['category'] = 'muscle', + ['hash'] = `blade`, + ['shop'] = 'pdm', + }, + ['buccaneer'] = { + ['name'] = 'Buccaneer', + ['brand'] = 'Albany', + ['model'] = 'buccaneer', + ['price'] = 22500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `buccaneer`, - ['shop'] = 'pdm', - }, - ['buccaneer2'] = { - ['name'] = 'Buccaneer Rider', - ['brand'] = 'Albany', - ['model'] = 'buccaneer2', - ['price'] = 24500, - ['category'] = 'muscle', + ['hash'] = `buccaneer`, + ['shop'] = 'pdm', + }, + ['buccaneer2'] = { + ['name'] = 'Buccaneer Rider', + ['brand'] = 'Albany', + ['model'] = 'buccaneer2', + ['price'] = 24500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `buccaneer2`, - ['shop'] = 'pdm', - }, - ['chino'] = { - ['name'] = 'Chino', - ['brand'] = 'Vapid', - ['model'] = 'chino', - ['price'] = 5000, - ['category'] = 'muscle', + ['hash'] = `buccaneer2`, + ['shop'] = 'pdm', + }, + ['chino'] = { + ['name'] = 'Chino', + ['brand'] = 'Vapid', + ['model'] = 'chino', + ['price'] = 5000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `chino`, - ['shop'] = 'pdm', - }, - ['chino2'] = { - ['name'] = 'Chino Luxe', - ['brand'] = 'Vapid', - ['model'] = 'chino2', - ['price'] = 8000, - ['category'] = 'muscle', + ['hash'] = `chino`, + ['shop'] = 'pdm', + }, + ['chino2'] = { + ['name'] = 'Chino Luxe', + ['brand'] = 'Vapid', + ['model'] = 'chino2', + ['price'] = 8000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `chino2`, - ['shop'] = 'pdm', - }, - ['clique'] = { --DLC - ['name'] = 'Clique', - ['brand'] = 'Vapid', - ['model'] = 'clique', - ['price'] = 20000, - ['category'] = 'muscle', + ['hash'] = `chino2`, + ['shop'] = 'pdm', + }, + ['clique'] = { --DLC + ['name'] = 'Clique', + ['brand'] = 'Vapid', + ['model'] = 'clique', + ['price'] = 20000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `clique`, - ['shop'] = 'pdm', - }, - ['coquette3'] = { - ['name'] = 'Coquette BlackFin', - ['brand'] = 'Invetero', - ['model'] = 'coquette3', - ['price'] = 180000, - ['category'] = 'muscle', + ['hash'] = `clique`, + ['shop'] = 'pdm', + }, + ['coquette3'] = { + ['name'] = 'Coquette BlackFin', + ['brand'] = 'Invetero', + ['model'] = 'coquette3', + ['price'] = 180000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `coquette3`, - ['shop'] = 'pdm', - }, - ['deviant'] = { --DLC - ['name'] = 'Deviant', - ['brand'] = 'Schyster', - ['model'] = 'deviant', - ['price'] = 70000, - ['category'] = 'muscle', + ['hash'] = `coquette3`, + ['shop'] = 'pdm', + }, + ['deviant'] = { --DLC + ['name'] = 'Deviant', + ['brand'] = 'Schyster', + ['model'] = 'deviant', + ['price'] = 70000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `deviant`, - ['shop'] = 'pdm', - }, - ['dominator'] = { - ['name'] = 'Dominator', - ['brand'] = 'Vapid', - ['model'] = 'dominator', - ['price'] = 62500, - ['category'] = 'muscle', + ['hash'] = `deviant`, + ['shop'] = 'pdm', + }, + ['dominator'] = { + ['name'] = 'Dominator', + ['brand'] = 'Vapid', + ['model'] = 'dominator', + ['price'] = 62500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dominator`, - ['shop'] = 'pdm', - }, - ['dominator2'] = { - ['name'] = 'Pißwasser Dominator', - ['brand'] = 'Vapid', - ['model'] = 'dominator2', - ['price'] = 50000, - ['category'] = 'muscle', + ['hash'] = `dominator`, + ['shop'] = 'pdm', + }, + ['dominator2'] = { + ['name'] = 'Pißwasser Dominator', + ['brand'] = 'Vapid', + ['model'] = 'dominator2', + ['price'] = 50000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dominator2`, - ['shop'] = 'pdm', - }, - ['dominator3'] = { - ['name'] = 'Dominator GTX', - ['brand'] = 'Vapid', - ['model'] = 'dominator3', - ['price'] = 70000, - ['category'] = 'muscle', + ['hash'] = `dominator2`, + ['shop'] = 'pdm', + }, + ['dominator3'] = { + ['name'] = 'Dominator GTX', + ['brand'] = 'Vapid', + ['model'] = 'dominator3', + ['price'] = 70000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dominator3`, - ['shop'] = 'pdm', - }, - ['dominator4'] = { --DLC - ['name'] = 'Dominator Arena', - ['brand'] = 'Vapid', - ['model'] = 'dominator4', - ['price'] = 200000, - ['category'] = 'muscle', + ['hash'] = `dominator3`, + ['shop'] = 'pdm', + }, + ['dominator4'] = { --DLC + ['name'] = 'Dominator Arena', + ['brand'] = 'Vapid', + ['model'] = 'dominator4', + ['price'] = 200000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dominator4`, - ['shop'] = 'pdm', - }, - ['dominator7'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Dominator ASP', - ['brand'] = 'Vapid', - ['model'] = 'dominator7', - ['price'] = 110000, - ['category'] = 'muscle', + ['hash'] = `dominator4`, + ['shop'] = 'pdm', + }, + ['dominator7'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Dominator ASP', + ['brand'] = 'Vapid', + ['model'] = 'dominator7', + ['price'] = 110000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dominator7`, - ['shop'] = 'pdm', - }, - ['dominator8'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Dominator GTT', - ['brand'] = 'Vapid', - ['model'] = 'dominator8', - ['price'] = 80000, - ['category'] = 'muscle', + ['hash'] = `dominator7`, + ['shop'] = 'pdm', + }, + ['dominator8'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Dominator GTT', + ['brand'] = 'Vapid', + ['model'] = 'dominator8', + ['price'] = 80000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dominator8`, - ['shop'] = 'pdm', - }, - ['dukes'] = { - ['name'] = 'Dukes', - ['brand'] = 'Imponte', - ['model'] = 'dukes', - ['price'] = 23500, - ['category'] = 'muscle', + ['hash'] = `dominator8`, + ['shop'] = 'pdm', + }, + ['dukes'] = { + ['name'] = 'Dukes', + ['brand'] = 'Imponte', + ['model'] = 'dukes', + ['price'] = 23500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dukes`, - ['shop'] = 'pdm', - }, - ['dukes2'] = { - ['name'] = 'Dukes Nightrider', - ['brand'] = 'Imponte', - ['model'] = 'dukes2', - ['price'] = 60000, - ['category'] = 'muscle', + ['hash'] = `dukes`, + ['shop'] = 'pdm', + }, + ['dukes2'] = { + ['name'] = 'Dukes Nightrider', + ['brand'] = 'Imponte', + ['model'] = 'dukes2', + ['price'] = 60000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dukes2`, - ['shop'] = 'pdm', - }, - ['dukes3'] = { - ['name'] = 'Beater Dukes', - ['brand'] = 'Imponte', - ['model'] = 'dukes3', - ['price'] = 45000, - ['category'] = 'muscle', + ['hash'] = `dukes2`, + ['shop'] = 'pdm', + }, + ['dukes3'] = { + ['name'] = 'Beater Dukes', + ['brand'] = 'Imponte', + ['model'] = 'dukes3', + ['price'] = 45000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `dukes3`, - ['shop'] = 'pdm', - }, - ['faction'] = { - ['name'] = 'Faction', - ['brand'] = 'Willard', - ['model'] = 'faction', - ['price'] = 17000, - ['category'] = 'muscle', + ['hash'] = `dukes3`, + ['shop'] = 'pdm', + }, + ['faction'] = { + ['name'] = 'Faction', + ['brand'] = 'Willard', + ['model'] = 'faction', + ['price'] = 17000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `faction`, - ['shop'] = 'pdm', - }, - ['faction2'] = { - ['name'] = 'Faction Rider', - ['brand'] = 'Willard', - ['model'] = 'faction2', - ['price'] = 19000, - ['category'] = 'muscle', + ['hash'] = `faction`, + ['shop'] = 'pdm', + }, + ['faction2'] = { + ['name'] = 'Faction Rider', + ['brand'] = 'Willard', + ['model'] = 'faction2', + ['price'] = 19000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `faction2`, - ['shop'] = 'pdm', - }, - ['faction3'] = { - ['name'] = 'Faction Custom Donk', - ['brand'] = 'Willard', - ['model'] = 'faction3', - ['price'] = 35000, - ['category'] = 'muscle', + ['hash'] = `faction2`, + ['shop'] = 'pdm', + }, + ['faction3'] = { + ['name'] = 'Faction Custom Donk', + ['brand'] = 'Willard', + ['model'] = 'faction3', + ['price'] = 35000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `faction3`, - ['shop'] = 'pdm', - }, - ['ellie'] = { - ['name'] = 'Ellie', - ['brand'] = 'Vapid', - ['model'] = 'ellie', - ['price'] = 42250, - ['category'] = 'muscle', + ['hash'] = `faction3`, + ['shop'] = 'pdm', + }, + ['ellie'] = { + ['name'] = 'Ellie', + ['brand'] = 'Vapid', + ['model'] = 'ellie', + ['price'] = 42250, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `ellie`, - ['shop'] = 'pdm', - }, - ['gauntlet'] = { - ['name'] = 'Gauntlet', - ['brand'] = 'Bravado', - ['model'] = 'gauntlet', - ['price'] = 28500, - ['category'] = 'muscle', + ['hash'] = `ellie`, + ['shop'] = 'pdm', + }, + ['gauntlet'] = { + ['name'] = 'Gauntlet', + ['brand'] = 'Bravado', + ['model'] = 'gauntlet', + ['price'] = 28500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `gauntlet`, - ['shop'] = 'pdm', - }, - ['gauntlet2'] = { - ['name'] = 'Redwood Gauntlet', - ['brand'] = 'Bravado', - ['model'] = 'gauntlet2', - ['price'] = 70000, - ['category'] = 'muscle', + ['hash'] = `gauntlet`, + ['shop'] = 'pdm', + }, + ['gauntlet2'] = { + ['name'] = 'Redwood Gauntlet', + ['brand'] = 'Bravado', + ['model'] = 'gauntlet2', + ['price'] = 70000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `gauntlet2`, - ['shop'] = 'pdm', - }, - ['gauntlet3'] = { --DLC - ['name'] = 'Classic Gauntlet', - ['brand'] = 'Bravado', - ['model'] = 'gauntlet3', - ['price'] = 75000, - ['category'] = 'muscle', + ['hash'] = `gauntlet2`, + ['shop'] = 'pdm', + }, + ['gauntlet3'] = { --DLC + ['name'] = 'Classic Gauntlet', + ['brand'] = 'Bravado', + ['model'] = 'gauntlet3', + ['price'] = 75000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `gauntlet3`, - ['shop'] = 'pdm', - }, - ['gauntlet4'] = { --DLC - ['name'] = 'Gauntlet Hellfire', - ['brand'] = 'Bravado', - ['model'] = 'gauntlet4', - ['price'] = 80000, - ['category'] = 'muscle', + ['hash'] = `gauntlet3`, + ['shop'] = 'pdm', + }, + ['gauntlet4'] = { --DLC + ['name'] = 'Gauntlet Hellfire', + ['brand'] = 'Bravado', + ['model'] = 'gauntlet4', + ['price'] = 80000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `gauntlet4`, - ['shop'] = 'pdm', - }, - ['gauntlet5'] = { - ['name'] = 'Gauntlet Classic Custom', - ['brand'] = 'Bravado', - ['model'] = 'gauntlet5', - ['price'] = 120000, - ['category'] = 'muscle', + ['hash'] = `gauntlet4`, + ['shop'] = 'pdm', + }, + ['gauntlet5'] = { + ['name'] = 'Gauntlet Classic Custom', + ['brand'] = 'Bravado', + ['model'] = 'gauntlet5', + ['price'] = 120000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `gauntlet5`, - ['shop'] = 'pdm', - }, - ['hermes'] = { - ['name'] = 'Hermes', - ['brand'] = 'Albany', - ['model'] = 'hermes', - ['price'] = 535000, - ['category'] = 'muscle', + ['hash'] = `gauntlet5`, + ['shop'] = 'pdm', + }, + ['hermes'] = { + ['name'] = 'Hermes', + ['brand'] = 'Albany', + ['model'] = 'hermes', + ['price'] = 535000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `hermes`, - ['shop'] = 'pdm', - }, - ['hotknife'] = { - ['name'] = 'Hotknife', - ['brand'] = 'Vapid', - ['model'] = 'hotknife', - ['price'] = 90000, - ['category'] = 'muscle', + ['hash'] = `hermes`, + ['shop'] = 'pdm', + }, + ['hotknife'] = { + ['name'] = 'Hotknife', + ['brand'] = 'Vapid', + ['model'] = 'hotknife', + ['price'] = 90000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `hotknife`, - ['shop'] = 'pdm', - }, - ['hustler'] = { - ['name'] = 'Hustler', - ['brand'] = 'Vapid', - ['model'] = 'hustler', - ['price'] = 95000, - ['category'] = 'muscle', + ['hash'] = `hotknife`, + ['shop'] = 'pdm', + }, + ['hustler'] = { + ['name'] = 'Hustler', + ['brand'] = 'Vapid', + ['model'] = 'hustler', + ['price'] = 95000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `hustler`, - ['shop'] = 'pdm', - }, - ['impaler'] = { --DLC - ['name'] = 'impaler', - ['brand'] = 'Vapid', - ['model'] = 'impaler', - ['price'] = 95000, - ['category'] = 'muscle', + ['hash'] = `hustler`, + ['shop'] = 'pdm', + }, + ['impaler'] = { --DLC + ['name'] = 'impaler', + ['brand'] = 'Vapid', + ['model'] = 'impaler', + ['price'] = 95000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `impaler`, - ['shop'] = 'pdm', - }, - ['impaler2'] = { --DLC - ['name'] = 'impaler2', - ['brand'] = 'Vapid', - ['model'] = 'impaler2', - ['price'] = 95000, - ['category'] = 'muscle', + ['hash'] = `impaler`, + ['shop'] = 'pdm', + }, + ['impaler2'] = { --DLC + ['name'] = 'impaler2', + ['brand'] = 'Vapid', + ['model'] = 'impaler2', + ['price'] = 95000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `impaler2`, - ['shop'] = 'pdm', - }, - ['impaler3'] = { --DLC - ['name'] = 'impaler3', - ['brand'] = 'Vapid', - ['model'] = 'impaler3', - ['price'] = 95000, - ['category'] = 'muscle', + ['hash'] = `impaler2`, + ['shop'] = 'pdm', + }, + ['impaler3'] = { --DLC + ['name'] = 'impaler3', + ['brand'] = 'Vapid', + ['model'] = 'impaler3', + ['price'] = 95000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `impaler3`, - ['shop'] = 'pdm', - }, - ['impaler4'] = { --DLC - ['name'] = 'impaler4', - ['brand'] = 'Vapid', - ['model'] = 'impaler4', - ['price'] = 95000, - ['category'] = 'muscle', + ['hash'] = `impaler3`, + ['shop'] = 'pdm', + }, + ['impaler4'] = { --DLC + ['name'] = 'impaler4', + ['brand'] = 'Vapid', + ['model'] = 'impaler4', + ['price'] = 95000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `impaler4`, - ['shop'] = 'pdm', - }, - ['imperator'] = { --DLC - ['name'] = 'imperator', - ['brand'] = 'Vapid', - ['model'] = 'imperator', - ['price'] = 95000, - ['category'] = 'muscle', + ['hash'] = `impaler4`, + ['shop'] = 'pdm', + }, + ['imperator'] = { --DLC + ['name'] = 'imperator', + ['brand'] = 'Vapid', + ['model'] = 'imperator', + ['price'] = 95000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `imperator`, - ['shop'] = 'pdm', - }, - ['imperator2'] = { --DLC - ['name'] = 'imperator2', - ['brand'] = 'Vapid', - ['model'] = 'imperator2', - ['price'] = 95000, - ['category'] = 'muscle', + ['hash'] = `imperator`, + ['shop'] = 'pdm', + }, + ['imperator2'] = { --DLC + ['name'] = 'imperator2', + ['brand'] = 'Vapid', + ['model'] = 'imperator2', + ['price'] = 95000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `imperator2`, - ['shop'] = 'pdm', - }, - ['imperator3'] = { --DLC - ['name'] = 'imperator3', - ['brand'] = 'Vapid', - ['model'] = 'imperator3', - ['price'] = 95000, - ['category'] = 'muscle', + ['hash'] = `imperator2`, + ['shop'] = 'pdm', + }, + ['imperator3'] = { --DLC + ['name'] = 'imperator3', + ['brand'] = 'Vapid', + ['model'] = 'imperator3', + ['price'] = 95000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `imperator3`, - ['shop'] = 'pdm', - }, - ['lurcher'] = { - ['name'] = 'Gauntlet Classic Custom', - ['brand'] = 'Bravado', - ['model'] = 'lurcher', - ['price'] = 21000, - ['category'] = 'muscle', + ['hash'] = `imperator3`, + ['shop'] = 'pdm', + }, + ['lurcher'] = { + ['name'] = 'Gauntlet Classic Custom', + ['brand'] = 'Bravado', + ['model'] = 'lurcher', + ['price'] = 21000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `lurcher`, - ['shop'] = 'pdm', - }, - ['moonbeam'] = { - ['name'] = 'Moonbeam', - ['brand'] = 'Declasse', - ['model'] = 'moonbeam', - ['price'] = 13000, - ['category'] = 'vans', + ['hash'] = `lurcher`, + ['shop'] = 'pdm', + }, + ['moonbeam'] = { + ['name'] = 'Moonbeam', + ['brand'] = 'Declasse', + ['model'] = 'moonbeam', + ['price'] = 13000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `moonbeam`, - ['shop'] = 'pdm', - }, - ['moonbeam2'] = { - ['name'] = 'Moonbeam Custom', - ['brand'] = 'Declasse', - ['model'] = 'moonbeam2', - ['price'] = 15000, - ['category'] = 'vans', + ['hash'] = `moonbeam`, + ['shop'] = 'pdm', + }, + ['moonbeam2'] = { + ['name'] = 'Moonbeam Custom', + ['brand'] = 'Declasse', + ['model'] = 'moonbeam2', + ['price'] = 15000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `moonbeam2`, - ['shop'] = 'pdm', - }, - ['nightshade'] = { - ['name'] = 'Nightshade', - ['brand'] = 'Imponte', - ['model'] = 'nightshade', - ['price'] = 70000, - ['category'] = 'muscle', + ['hash'] = `moonbeam2`, + ['shop'] = 'pdm', + }, + ['nightshade'] = { + ['name'] = 'Nightshade', + ['brand'] = 'Imponte', + ['model'] = 'nightshade', + ['price'] = 70000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `nightshade`, - ['shop'] = 'pdm', - }, - ['peyote2'] = { --DLC - ['name'] = 'Peyote Gasser', - ['brand'] = 'Vapid', - ['model'] = 'peyote2', - ['price'] = 40000, - ['category'] = 'sportsclassics', + ['hash'] = `nightshade`, + ['shop'] = 'pdm', + }, + ['peyote2'] = { --DLC + ['name'] = 'Peyote Gasser', + ['brand'] = 'Vapid', + ['model'] = 'peyote2', + ['price'] = 40000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `peyote2`, - ['shop'] = 'pdm', - }, - ['phoenix'] = { - ['name'] = 'Phoenix', - ['brand'] = 'Imponte', - ['model'] = 'phoenix', - ['price'] = 65000, - ['category'] = 'muscle', + ['hash'] = `peyote2`, + ['shop'] = 'pdm', + }, + ['phoenix'] = { + ['name'] = 'Phoenix', + ['brand'] = 'Imponte', + ['model'] = 'phoenix', + ['price'] = 65000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `phoenix`, - ['shop'] = 'pdm', - }, - ['picador'] = { - ['name'] = 'Picador', - ['brand'] = 'Cheval', - ['model'] = 'picador', - ['price'] = 20000, - ['category'] = 'muscle', + ['hash'] = `phoenix`, + ['shop'] = 'pdm', + }, + ['picador'] = { + ['name'] = 'Picador', + ['brand'] = 'Cheval', + ['model'] = 'picador', + ['price'] = 20000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `picador`, - ['shop'] = 'pdm', - }, - ['ratloader2'] = { - ['name'] = 'ratloader2', - ['brand'] = 'Ratloader2', - ['model'] = 'ratloader2', - ['price'] = 20000, - ['category'] = 'muscle', + ['hash'] = `picador`, + ['shop'] = 'pdm', + }, + ['ratloader2'] = { + ['name'] = 'ratloader2', + ['brand'] = 'Ratloader2', + ['model'] = 'ratloader2', + ['price'] = 20000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `ratloader2`, - ['shop'] = 'pdm', - }, - ['ruiner'] = { - ['name'] = 'Ruiner', - ['brand'] = 'Imponte', - ['model'] = 'ruiner', - ['price'] = 29000, - ['category'] = 'muscle', + ['hash'] = `ratloader2`, + ['shop'] = 'pdm', + }, + ['ruiner'] = { + ['name'] = 'Ruiner', + ['brand'] = 'Imponte', + ['model'] = 'ruiner', + ['price'] = 29000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `ruiner`, - ['shop'] = 'pdm', - }, - ['ruiner2'] = { - ['name'] = 'Ruiner 2000', - ['brand'] = 'Imponte', - ['model'] = 'ruiner2', - ['price'] = 50000, - ['category'] = 'muscle', + ['hash'] = `ruiner`, + ['shop'] = 'pdm', + }, + ['ruiner2'] = { + ['name'] = 'Ruiner 2000', + ['brand'] = 'Imponte', + ['model'] = 'ruiner2', + ['price'] = 50000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `ruiner2`, - ['shop'] = 'pdm', - }, - ['sabregt'] = { - ['name'] = 'Sabre Turbo', - ['brand'] = 'Declasse', - ['model'] = 'sabregt', - ['price'] = 23000, - ['category'] = 'muscle', + ['hash'] = `ruiner2`, + ['shop'] = 'pdm', + }, + ['sabregt'] = { + ['name'] = 'Sabre Turbo', + ['brand'] = 'Declasse', + ['model'] = 'sabregt', + ['price'] = 23000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `sabregt`, - ['shop'] = 'pdm', - }, - ['sabregt2'] = { - ['name'] = 'Sabre GT', - ['brand'] = 'Declasse', - ['model'] = 'sabregt2', - ['price'] = 26500, - ['category'] = 'muscle', + ['hash'] = `sabregt`, + ['shop'] = 'pdm', + }, + ['sabregt2'] = { + ['name'] = 'Sabre GT', + ['brand'] = 'Declasse', + ['model'] = 'sabregt2', + ['price'] = 26500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `sabregt2`, - ['shop'] = 'pdm', - }, - ['slamvan'] = { - ['name'] = 'Slam Van', - ['brand'] = 'Vapid', - ['model'] = 'slamvan', - ['price'] = 30000, - ['category'] = 'muscle', + ['hash'] = `sabregt2`, + ['shop'] = 'pdm', + }, + ['slamvan'] = { + ['name'] = 'Slam Van', + ['brand'] = 'Vapid', + ['model'] = 'slamvan', + ['price'] = 30000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `slamvan`, - ['shop'] = 'pdm', - }, - ['slamvan2'] = { - ['name'] = 'Lost Slam Van', - ['brand'] = 'Vapid', - ['model'] = 'slamvan2', - ['price'] = 90000, - ['category'] = 'muscle', + ['hash'] = `slamvan`, + ['shop'] = 'pdm', + }, + ['slamvan2'] = { + ['name'] = 'Lost Slam Van', + ['brand'] = 'Vapid', + ['model'] = 'slamvan2', + ['price'] = 90000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `slamvan2`, - ['shop'] = 'pdm', - }, - ['slamvan3'] = { - ['name'] = 'Slam Van Custom', - ['brand'] = 'Vapid', - ['model'] = 'slamvan3', - ['price'] = 17000, - ['category'] = 'muscle', + ['hash'] = `slamvan2`, + ['shop'] = 'pdm', + }, + ['slamvan3'] = { + ['name'] = 'Slam Van Custom', + ['brand'] = 'Vapid', + ['model'] = 'slamvan3', + ['price'] = 17000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `slamvan3`, - ['shop'] = 'pdm', - }, - ['stalion'] = { - ['name'] = 'Stallion', - ['brand'] = 'Declasse', - ['model'] = 'stalion', - ['price'] = 33000, - ['category'] = 'muscle', + ['hash'] = `slamvan3`, + ['shop'] = 'pdm', + }, + ['stalion'] = { + ['name'] = 'Stallion', + ['brand'] = 'Declasse', + ['model'] = 'stalion', + ['price'] = 33000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `stalion`, - ['shop'] = 'pdm', - }, - ['stalion2'] = { - ['name'] = 'Stallion Burgershot', - ['brand'] = 'Declasse', - ['model'] = 'stalion2', - ['price'] = 40000, - ['category'] = 'muscle', + ['hash'] = `stalion`, + ['shop'] = 'pdm', + }, + ['stalion2'] = { + ['name'] = 'Stallion Burgershot', + ['brand'] = 'Declasse', + ['model'] = 'stalion2', + ['price'] = 40000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `stalion2`, - ['shop'] = 'pdm', - }, - ['tampa'] = { - ['name'] = 'Tampa', - ['brand'] = 'Declasse', - ['model'] = 'tampa', - ['price'] = 24500, - ['category'] = 'muscle', + ['hash'] = `stalion2`, + ['shop'] = 'pdm', + }, + ['tampa'] = { + ['name'] = 'Tampa', + ['brand'] = 'Declasse', + ['model'] = 'tampa', + ['price'] = 24500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `tampa`, - ['shop'] = 'pdm', - }, - ['tulip'] = { --DLC - ['name'] = 'Tulip', - ['brand'] = 'Declasse', - ['model'] = 'tulip', - ['price'] = 80000, - ['category'] = 'muscle', + ['hash'] = `tampa`, + ['shop'] = 'pdm', + }, + ['tulip'] = { --DLC + ['name'] = 'Tulip', + ['brand'] = 'Declasse', + ['model'] = 'tulip', + ['price'] = 80000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `tulip`, - ['shop'] = 'pdm', - }, - ['vamos'] = { --DLC - ['name'] = 'Vamos', - ['brand'] = 'Declasse', - ['model'] = 'vamos', - ['price'] = 30000, - ['category'] = 'muscle', + ['hash'] = `tulip`, + ['shop'] = 'pdm', + }, + ['vamos'] = { --DLC + ['name'] = 'Vamos', + ['brand'] = 'Declasse', + ['model'] = 'vamos', + ['price'] = 30000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `vamos`, - ['shop'] = 'pdm', - }, - ['vigero'] = { - ['name'] = 'Vigero', - ['brand'] = 'Declasse', - ['model'] = 'vigero', - ['price'] = 39500, - ['category'] = 'muscle', + ['hash'] = `vamos`, + ['shop'] = 'pdm', + }, + ['vigero'] = { + ['name'] = 'Vigero', + ['brand'] = 'Declasse', + ['model'] = 'vigero', + ['price'] = 39500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `vigero`, - ['shop'] = 'pdm', - }, - ['virgo'] = { - ['name'] = 'Virgo', - ['brand'] = 'Albany', - ['model'] = 'virgo', - ['price'] = 22000, - ['category'] = 'muscle', + ['hash'] = `vigero`, + ['shop'] = 'pdm', + }, + ['virgo'] = { + ['name'] = 'Virgo', + ['brand'] = 'Albany', + ['model'] = 'virgo', + ['price'] = 22000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `virgo`, - ['shop'] = 'pdm', - }, - ['virgo2'] = { - ['name'] = 'Virgo Custom Classic', - ['brand'] = 'Dundreary', - ['model'] = 'virgo2', - ['price'] = 21000, - ['category'] = 'muscle', + ['hash'] = `virgo`, + ['shop'] = 'pdm', + }, + ['virgo2'] = { + ['name'] = 'Virgo Custom Classic', + ['brand'] = 'Dundreary', + ['model'] = 'virgo2', + ['price'] = 21000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `virgo2`, - ['shop'] = 'pdm', - }, - ['virgo3'] = { - ['name'] = 'Virgo Custom Classic', - ['brand'] = 'Dundreary', - ['model'] = 'virgo3', - ['price'] = 21000, - ['category'] = 'muscle', + ['hash'] = `virgo2`, + ['shop'] = 'pdm', + }, + ['virgo3'] = { + ['name'] = 'Virgo Custom Classic', + ['brand'] = 'Dundreary', + ['model'] = 'virgo3', + ['price'] = 21000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `virgo3`, - ['shop'] = 'pdm', - }, - ['voodoo'] = { - ['name'] = 'Voodoo', - ['brand'] = 'Declasse', - ['model'] = 'voodoo', - ['price'] = 13000, - ['category'] = 'muscle', + ['hash'] = `virgo3`, + ['shop'] = 'pdm', + }, + ['voodoo'] = { + ['name'] = 'Voodoo', + ['brand'] = 'Declasse', + ['model'] = 'voodoo', + ['price'] = 13000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `voodoo`, - ['shop'] = 'pdm', - }, - ['yosemite'] = { - ['name'] = 'Yosemite', - ['brand'] = 'Declasse', - ['model'] = 'yosemite', - ['price'] = 19500, - ['category'] = 'muscle', + ['hash'] = `voodoo`, + ['shop'] = 'pdm', + }, + ['yosemite'] = { + ['name'] = 'Yosemite', + ['brand'] = 'Declasse', + ['model'] = 'yosemite', + ['price'] = 19500, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `yosemite`, - ['shop'] = 'pdm', - }, - ['yosemite2'] = { - ['name'] = 'Yosemite Drift', - ['brand'] = 'Declasse', - ['model'] = 'yosemite2', - ['price'] = 55000, - ['category'] = 'muscle', + ['hash'] = `yosemite`, + ['shop'] = 'pdm', + }, + ['yosemite2'] = { + ['name'] = 'Yosemite Drift', + ['brand'] = 'Declasse', + ['model'] = 'yosemite2', + ['price'] = 55000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `yosemite2`, - ['shop'] = 'pdm', - }, - ['yosemite3'] = { - ['name'] = 'Yosemite Rancher', - ['brand'] = 'Declasse', - ['price'] = 425000, - ['category'] = 'offroad', + ['hash'] = `yosemite2`, + ['shop'] = 'pdm', + }, + ['yosemite3'] = { + ['name'] = 'Yosemite Rancher', + ['brand'] = 'Declasse', + ['price'] = 425000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'yosemite3', - ['hash'] = `yosemite3`, - ['shop'] = 'pdm', - }, - ['buffalo4'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Buffalo STX', - ['brand'] = 'Bravado', - ['model'] = 'buffalo4', - ['price'] = 345000, - ['category'] = 'muscle', + ['model'] = 'yosemite3', + ['hash'] = `yosemite3`, + ['shop'] = 'pdm', + }, + ['buffalo4'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Buffalo STX', + ['brand'] = 'Bravado', + ['model'] = 'buffalo4', + ['price'] = 345000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `buffalo4`, - ['shop'] = 'pdm', - }, - --- Off-Road - ['bfinjection'] = { - ['name'] = 'Bf Injection', - ['brand'] = 'Annis', - ['price'] = 9000, - ['category'] = 'offroad', + ['hash'] = `buffalo4`, + ['shop'] = 'pdm', + }, + --- Off-Road + ['bfinjection'] = { + ['name'] = 'Bf Injection', + ['brand'] = 'Annis', + ['price'] = 9000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'bfinjection', - ['hash'] = `bfinjection`, - ['shop'] = 'pdm', - }, - ['bifta'] = { - ['name'] = 'Bifta', - ['brand'] = 'Annis', - ['price'] = 15500, - ['category'] = 'offroad', + ['model'] = 'bfinjection', + ['hash'] = `bfinjection`, + ['shop'] = 'pdm', + }, + ['bifta'] = { + ['name'] = 'Bifta', + ['brand'] = 'Annis', + ['price'] = 15500, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'bifta', - ['hash'] = `bifta`, - ['shop'] = 'pdm', - }, - ['blazer'] = { - ['name'] = 'Blazer', - ['brand'] = 'Annis', - ['price'] = 7500, - ['category'] = 'offroad', + ['model'] = 'bifta', + ['hash'] = `bifta`, + ['shop'] = 'pdm', + }, + ['blazer'] = { + ['name'] = 'Blazer', + ['brand'] = 'Annis', + ['price'] = 7500, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'blazer', - ['hash'] = `blazer`, - ['shop'] = 'pdm', - }, - ['blazer2'] = { - ['name'] = 'Blazer Lifeguard', - ['brand'] = 'Nagasaki', - ['model'] = 'blazer2', - ['price'] = 7000, - ['category'] = 'offroad', + ['model'] = 'blazer', + ['hash'] = `blazer`, + ['shop'] = 'pdm', + }, + ['blazer2'] = { + ['name'] = 'Blazer Lifeguard', + ['brand'] = 'Nagasaki', + ['model'] = 'blazer2', + ['price'] = 7000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `blazer2`, - ['shop'] = 'pdm', - }, - ['blazer3'] = { - ['name'] = 'Blazer Hot Rod', - ['brand'] = 'Nagasaki', - ['model'] = 'blazer3', - ['price'] = 7000, - ['category'] = 'offroad', + ['hash'] = `blazer2`, + ['shop'] = 'pdm', + }, + ['blazer3'] = { + ['name'] = 'Blazer Hot Rod', + ['brand'] = 'Nagasaki', + ['model'] = 'blazer3', + ['price'] = 7000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `blazer3`, - ['shop'] = 'pdm', - }, - ['blazer4'] = { - ['name'] = 'Blazer Sport', - ['brand'] = 'Annis', - ['price'] = 9250, - ['category'] = 'offroad', + ['hash'] = `blazer3`, + ['shop'] = 'pdm', + }, + ['blazer4'] = { + ['name'] = 'Blazer Sport', + ['brand'] = 'Annis', + ['price'] = 9250, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'blazer4', - ['hash'] = `blazer4`, - ['shop'] = 'pdm', - }, - ['blazer5'] = { - ['name'] = 'Blazer Aqua', - ['brand'] = 'Nagasaki', - ['model'] = 'blazer5', - ['price'] = 40000, - ['category'] = 'offroad', + ['model'] = 'blazer4', + ['hash'] = `blazer4`, + ['shop'] = 'pdm', + }, + ['blazer5'] = { + ['name'] = 'Blazer Aqua', + ['brand'] = 'Nagasaki', + ['model'] = 'blazer5', + ['price'] = 40000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `blazer5`, - ['shop'] = 'pdm', - }, - ['brawler'] = { - ['name'] = 'Brawler', - ['brand'] = 'Annis', - ['price'] = 40000, - ['category'] = 'offroad', + ['hash'] = `blazer5`, + ['shop'] = 'pdm', + }, + ['brawler'] = { + ['name'] = 'Brawler', + ['brand'] = 'Annis', + ['price'] = 40000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'brawler', - ['hash'] = `brawler`, - ['shop'] = 'pdm', - }, - ['caracara'] = { - ['name'] = 'Caracara', - ['brand'] = 'Vapid', - ['model'] = 'caracara', - ['price'] = 60000, - ['category'] = 'offroad', + ['model'] = 'brawler', + ['hash'] = `brawler`, + ['shop'] = 'pdm', + }, + ['caracara'] = { + ['name'] = 'Caracara', + ['brand'] = 'Vapid', + ['model'] = 'caracara', + ['price'] = 60000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `caracara`, - ['shop'] = 'pdm', - }, - ['caracara2'] = { --DLC - ['name'] = 'Caracara 4x4', - ['brand'] = 'Vapid', - ['model'] = 'caracara2', - ['price'] = 80000, - ['category'] = 'offroad', + ['hash'] = `caracara`, + ['shop'] = 'pdm', + }, + ['caracara2'] = { --DLC + ['name'] = 'Caracara 4x4', + ['brand'] = 'Vapid', + ['model'] = 'caracara2', + ['price'] = 80000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `caracara2`, - ['shop'] = 'pdm', - }, - ['dubsta3'] = { - ['name'] = 'Dubsta 6x6', - ['brand'] = 'Annis', - ['price'] = 34000, - ['category'] = 'offroad', + ['hash'] = `caracara2`, + ['shop'] = 'pdm', + }, + ['dubsta3'] = { + ['name'] = 'Dubsta 6x6', + ['brand'] = 'Annis', + ['price'] = 34000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'dubsta3', - ['hash'] = `dubsta3`, - ['shop'] = 'pdm', - }, - ['dune'] = { - ['name'] = 'Dune Buggy', - ['brand'] = 'Annis', - ['price'] = 14000, - ['category'] = 'offroad', + ['model'] = 'dubsta3', + ['hash'] = `dubsta3`, + ['shop'] = 'pdm', + }, + ['dune'] = { + ['name'] = 'Dune Buggy', + ['brand'] = 'Annis', + ['price'] = 14000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'dune', - ['hash'] = `dune`, - ['shop'] = 'pdm', - }, - ['everon'] = { - ['name'] = 'Everon', - ['brand'] = 'Karin', - ['model'] = 'everon', - ['price'] = 60000, - ['category'] = 'offroad', + ['model'] = 'dune', + ['hash'] = `dune`, + ['shop'] = 'pdm', + }, + ['everon'] = { + ['name'] = 'Everon', + ['brand'] = 'Karin', + ['model'] = 'everon', + ['price'] = 60000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `everon`, - ['shop'] = 'pdm', - }, - ['freecrawler'] = { --DLC - ['name'] = 'Freecrawler', - ['brand'] = 'Canis', - ['model'] = 'freecrawler', - ['price'] = 24000, - ['category'] = 'offroad', + ['hash'] = `everon`, + ['shop'] = 'pdm', + }, + ['freecrawler'] = { --DLC + ['name'] = 'Freecrawler', + ['brand'] = 'Canis', + ['model'] = 'freecrawler', + ['price'] = 24000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `freecrawler`, - ['shop'] = 'pdm', - }, - ['hellion'] = { --DLC - ['name'] = 'Hellion', - ['brand'] = 'Annis', - ['model'] = 'hellion', - ['price'] = 38000, - ['category'] = 'offroad', + ['hash'] = `freecrawler`, + ['shop'] = 'pdm', + }, + ['hellion'] = { --DLC + ['name'] = 'Hellion', + ['brand'] = 'Annis', + ['model'] = 'hellion', + ['price'] = 38000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `hellion`, - ['shop'] = 'pdm', - }, - ['kalahari'] = { - ['name'] = 'Kalahari', - ['brand'] = 'Canis', - ['model'] = 'kalahari', - ['price'] = 14000, - ['category'] = 'offroad', + ['hash'] = `hellion`, + ['shop'] = 'pdm', + }, + ['kalahari'] = { + ['name'] = 'Kalahari', + ['brand'] = 'Canis', + ['model'] = 'kalahari', + ['price'] = 14000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `kalahari`, - ['shop'] = 'pdm', - }, - ['kamacho'] = { - ['name'] = 'Kamacho', - ['brand'] = 'Canis', - ['model'] = 'kamacho', - ['price'] = 50000, - ['category'] = 'offroad', + ['hash'] = `kalahari`, + ['shop'] = 'pdm', + }, + ['kamacho'] = { + ['name'] = 'Kamacho', + ['brand'] = 'Canis', + ['model'] = 'kamacho', + ['price'] = 50000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `kamacho`, - ['shop'] = 'pdm', - }, - ['mesa3'] = { - ['name'] = 'Mesa Merryweather', - ['brand'] = 'Canis', - ['model'] = 'mesa3', - ['price'] = 400000, - ['category'] = 'offroad', + ['hash'] = `kamacho`, + ['shop'] = 'pdm', + }, + ['mesa3'] = { + ['name'] = 'Mesa Merryweather', + ['brand'] = 'Canis', + ['model'] = 'mesa3', + ['price'] = 400000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `mesa3`, - ['shop'] = 'pdm', - }, - ['outlaw'] = { - ['name'] = 'Outlaw', - ['brand'] = 'Nagasaki', - ['model'] = 'outlaw', - ['price'] = 15000, - ['category'] = 'offroad', + ['hash'] = `mesa3`, + ['shop'] = 'pdm', + }, + ['outlaw'] = { + ['name'] = 'Outlaw', + ['brand'] = 'Nagasaki', + ['model'] = 'outlaw', + ['price'] = 15000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `outlaw`, - ['shop'] = 'pdm', - }, - ['rancherxl'] = { - ['name'] = 'Rancher XL', - ['brand'] = 'Declasse', - ['model'] = 'rancherxl', - ['price'] = 24000, - ['category'] = 'offroad', + ['hash'] = `outlaw`, + ['shop'] = 'pdm', + }, + ['rancherxl'] = { + ['name'] = 'Rancher XL', + ['brand'] = 'Declasse', + ['model'] = 'rancherxl', + ['price'] = 24000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `rancherxl`, - ['shop'] = 'pdm', - }, - ['rebel2'] = { - ['name'] = 'Rebel', - ['brand'] = 'Annis', - ['model'] = 'rebel2', - ['price'] = 20000, - ['category'] = 'offroad', + ['hash'] = `rancherxl`, + ['shop'] = 'pdm', + }, + ['rebel2'] = { + ['name'] = 'Rebel', + ['brand'] = 'Annis', + ['model'] = 'rebel2', + ['price'] = 20000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `rebel2`, - ['shop'] = 'pdm', - }, - ['riata'] = { - ['name'] = 'Riata', - ['brand'] = 'Vapid', - ['model'] = 'riata', - ['price'] = 380000, - ['category'] = 'offroad', + ['hash'] = `rebel2`, + ['shop'] = 'pdm', + }, + ['riata'] = { + ['name'] = 'Riata', + ['brand'] = 'Vapid', + ['model'] = 'riata', + ['price'] = 380000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `riata`, - ['shop'] = 'pdm', - }, - ['sandking'] = { - ['name'] = 'Sandking', - ['brand'] = 'Annis', - ['price'] = 25000, - ['category'] = 'offroad', + ['hash'] = `riata`, + ['shop'] = 'pdm', + }, + ['sandking'] = { + ['name'] = 'Sandking', + ['brand'] = 'Annis', + ['price'] = 25000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'sandking', - ['hash'] = `sandking`, - ['shop'] = 'pdm', - }, - ['sandking2'] = { - ['name'] = 'Sandking SWB', - ['brand'] = 'Annis', - ['price'] = 38000, - ['category'] = 'offroad', + ['model'] = 'sandking', + ['hash'] = `sandking`, + ['shop'] = 'pdm', + }, + ['sandking2'] = { + ['name'] = 'Sandking SWB', + ['brand'] = 'Annis', + ['price'] = 38000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'sandking2', - ['hash'] = `sandking2`, - ['shop'] = 'pdm', - }, - ['trophytruck'] = { - ['name'] = 'Trophy Truck', - ['brand'] = 'Annis', - ['price'] = 60000, - ['category'] = 'offroad', + ['model'] = 'sandking2', + ['hash'] = `sandking2`, + ['shop'] = 'pdm', + }, + ['trophytruck'] = { + ['name'] = 'Trophy Truck', + ['brand'] = 'Annis', + ['price'] = 60000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'trophytruck', - ['hash'] = `trophytruck`, - ['shop'] = 'pdm', - }, - ['trophytruck2'] = { - ['name'] = 'Trophy Truck Limited', - ['brand'] = 'Annis', - ['price'] = 80000, - ['category'] = 'offroad', + ['model'] = 'trophytruck', + ['hash'] = `trophytruck`, + ['shop'] = 'pdm', + }, + ['trophytruck2'] = { + ['name'] = 'Trophy Truck Limited', + ['brand'] = 'Annis', + ['price'] = 80000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'trophytruck2', - ['hash'] = `trophytruck2`, - ['shop'] = 'pdm', - }, - ['vagrant'] = { - ['name'] = 'Vagrant', - ['brand'] = 'Maxwell', - ['price'] = 50000, - ['category'] = 'offroad', + ['model'] = 'trophytruck2', + ['hash'] = `trophytruck2`, + ['shop'] = 'pdm', + }, + ['vagrant'] = { + ['name'] = 'Vagrant', + ['brand'] = 'Maxwell', + ['price'] = 50000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'vagrant', - ['hash'] = `vagrant`, - ['shop'] = 'pdm', - }, - ['verus'] = { - ['name'] = 'Verus', - ['brand'] = 'Dinka', - ['price'] = 20000, - ['category'] = 'offroad', + ['model'] = 'vagrant', + ['hash'] = `vagrant`, + ['shop'] = 'pdm', + }, + ['verus'] = { + ['name'] = 'Verus', + ['brand'] = 'Dinka', + ['price'] = 20000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'verus', - ['hash'] = `verus`, - ['shop'] = 'pdm', - }, - ['winky'] = { - ['name'] = 'Winky', - ['brand'] = 'Vapid', - ['price'] = 10000, - ['category'] = 'offroad', + ['model'] = 'verus', + ['hash'] = `verus`, + ['shop'] = 'pdm', + }, + ['winky'] = { + ['name'] = 'Winky', + ['brand'] = 'Vapid', + ['price'] = 10000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['model'] = 'winky', - ['hash'] = `winky`, - ['shop'] = 'pdm', - }, - --- SUVs - ['baller'] = { - ['name'] = 'Baller', - ['brand'] = 'Gallivanter', - ['model'] = 'baller', - ['price'] = 22000, - ['category'] = 'suvs', + ['model'] = 'winky', + ['hash'] = `winky`, + ['shop'] = 'pdm', + }, + --- SUVs + ['baller'] = { + ['name'] = 'Baller', + ['brand'] = 'Gallivanter', + ['model'] = 'baller', + ['price'] = 22000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `baller`, - ['shop'] = 'pdm', - }, - ['baller2'] = { - ['name'] = 'Baller', - ['brand'] = 'Gallivanter', - ['model'] = 'baller2', - ['price'] = 15000, - ['category'] = 'suvs', + ['hash'] = `baller`, + ['shop'] = 'pdm', + }, + ['baller2'] = { + ['name'] = 'Baller', + ['brand'] = 'Gallivanter', + ['model'] = 'baller2', + ['price'] = 15000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `baller2`, - ['shop'] = 'pdm', - }, - ['baller3'] = { - ['name'] = 'Baller LE', - ['brand'] = 'Gallivanter', - ['model'] = 'baller3', - ['price'] = 15000, - ['category'] = 'suvs', + ['hash'] = `baller2`, + ['shop'] = 'pdm', + }, + ['baller3'] = { + ['name'] = 'Baller LE', + ['brand'] = 'Gallivanter', + ['model'] = 'baller3', + ['price'] = 15000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `baller3`, - ['shop'] = 'pdm', - }, - ['baller4'] = { - ['name'] = 'Baller LE LWB', - ['brand'] = 'Gallivanter', - ['model'] = 'baller4', - ['price'] = 29000, - ['category'] = 'suvs', + ['hash'] = `baller3`, + ['shop'] = 'pdm', + }, + ['baller4'] = { + ['name'] = 'Baller LE LWB', + ['brand'] = 'Gallivanter', + ['model'] = 'baller4', + ['price'] = 29000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `baller4`, - ['shop'] = 'pdm', - }, - ['baller5'] = { - ['name'] = 'Baller LE (Armored)', - ['brand'] = 'Gallivanter', - ['model'] = 'baller5', - ['price'] = 78000, - ['category'] = 'suvs', + ['hash'] = `baller4`, + ['shop'] = 'pdm', + }, + ['baller5'] = { + ['name'] = 'Baller LE (Armored)', + ['brand'] = 'Gallivanter', + ['model'] = 'baller5', + ['price'] = 78000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `baller5`, - ['shop'] = 'pdm', - }, - ['baller6'] = { - ['name'] = 'Baller LE LWB (Armored)', - ['brand'] = 'Gallivanter', - ['model'] = 'baller6', - ['price'] = 82000, - ['category'] = 'suvs', + ['hash'] = `baller5`, + ['shop'] = 'pdm', + }, + ['baller6'] = { + ['name'] = 'Baller LE LWB (Armored)', + ['brand'] = 'Gallivanter', + ['model'] = 'baller6', + ['price'] = 82000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `baller6`, - ['shop'] = 'pdm', - }, - ['bjxl'] = { - ['name'] = 'BeeJay XL', - ['brand'] = 'Karin', - ['model'] = 'bjxl', - ['price'] = 19000, - ['category'] = 'suvs', + ['hash'] = `baller6`, + ['shop'] = 'pdm', + }, + ['bjxl'] = { + ['name'] = 'BeeJay XL', + ['brand'] = 'Karin', + ['model'] = 'bjxl', + ['price'] = 19000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `bjxl`, - ['shop'] = 'pdm', - }, - ['cavalcade'] = { - ['name'] = 'Cavalcade', - ['brand'] = 'Albany', - ['model'] = 'cavalcade', - ['price'] = 14000, - ['category'] = 'suvs', + ['hash'] = `bjxl`, + ['shop'] = 'pdm', + }, + ['cavalcade'] = { + ['name'] = 'Cavalcade', + ['brand'] = 'Albany', + ['model'] = 'cavalcade', + ['price'] = 14000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `cavalcade`, - ['shop'] = 'pdm', - }, - ['cavalcade2'] = { - ['name'] = 'Cavalcade', - ['brand'] = 'Albany', - ['model'] = 'cavalcade2', - ['price'] = 16500, - ['category'] = 'suvs', + ['hash'] = `cavalcade`, + ['shop'] = 'pdm', + }, + ['cavalcade2'] = { + ['name'] = 'Cavalcade', + ['brand'] = 'Albany', + ['model'] = 'cavalcade2', + ['price'] = 16500, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `cavalcade2`, - ['shop'] = 'pdm', - }, - ['contender'] = { - ['name'] = 'Contender', - ['brand'] = 'Vapid', - ['model'] = 'contender', - ['price'] = 35000, - ['category'] = 'suvs', + ['hash'] = `cavalcade2`, + ['shop'] = 'pdm', + }, + ['contender'] = { + ['name'] = 'Contender', + ['brand'] = 'Vapid', + ['model'] = 'contender', + ['price'] = 35000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `contender`, - ['shop'] = 'pdm', - }, - ['dubsta'] = { - ['name'] = 'Dubsta', - ['brand'] = 'Benefactor', - ['model'] = 'dubsta', - ['price'] = 19000, - ['category'] = 'suvs', + ['hash'] = `contender`, + ['shop'] = 'pdm', + }, + ['dubsta'] = { + ['name'] = 'Dubsta', + ['brand'] = 'Benefactor', + ['model'] = 'dubsta', + ['price'] = 19000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `dubsta`, - ['shop'] = 'pdm', - }, - ['dubsta2'] = { - ['name'] = 'Dubsta Luxuary', - ['brand'] = 'Benefactor', - ['model'] = 'dubsta2', - ['price'] = 19500, - ['category'] = 'suvs', + ['hash'] = `dubsta`, + ['shop'] = 'pdm', + }, + ['dubsta2'] = { + ['name'] = 'Dubsta Luxuary', + ['brand'] = 'Benefactor', + ['model'] = 'dubsta2', + ['price'] = 19500, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `dubsta2`, - ['shop'] = 'pdm', - }, - ['fq2'] = { - ['name'] = 'FQ2', - ['brand'] = 'Fathom', - ['model'] = 'fq2', - ['price'] = 18500, - ['category'] = 'suvs', + ['hash'] = `dubsta2`, + ['shop'] = 'pdm', + }, + ['fq2'] = { + ['name'] = 'FQ2', + ['brand'] = 'Fathom', + ['model'] = 'fq2', + ['price'] = 18500, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `fq2`, - ['shop'] = 'pdm', - }, - ['granger'] = { - ['name'] = 'Granger', - ['brand'] = 'Declasse', - ['model'] = 'granger', - ['price'] = 22000, - ['category'] = 'suvs', + ['hash'] = `fq2`, + ['shop'] = 'pdm', + }, + ['granger'] = { + ['name'] = 'Granger', + ['brand'] = 'Declasse', + ['model'] = 'granger', + ['price'] = 22000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `granger`, - ['shop'] = 'pdm', - }, - ['gresley'] = { - ['name'] = 'Gresley', - ['brand'] = 'Bravado', - ['model'] = 'gresley', - ['price'] = 25000, - ['category'] = 'suvs', + ['hash'] = `granger`, + ['shop'] = 'pdm', + }, + ['gresley'] = { + ['name'] = 'Gresley', + ['brand'] = 'Bravado', + ['model'] = 'gresley', + ['price'] = 25000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `gresley`, - ['shop'] = 'pdm', - }, - ['habanero'] = { - ['name'] = 'Habanero', - ['brand'] = 'Emperor', - ['model'] = 'habanero', - ['price'] = 20000, - ['category'] = 'suvs', + ['hash'] = `gresley`, + ['shop'] = 'pdm', + }, + ['habanero'] = { + ['name'] = 'Habanero', + ['brand'] = 'Emperor', + ['model'] = 'habanero', + ['price'] = 20000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `habanero`, - ['shop'] = 'pdm', - }, - ['huntley'] = { - ['name'] = 'Huntley S', - ['brand'] = 'Enus', - ['model'] = 'huntley', - ['price'] = 24500, - ['category'] = 'suvs', + ['hash'] = `habanero`, + ['shop'] = 'pdm', + }, + ['huntley'] = { + ['name'] = 'Huntley S', + ['brand'] = 'Enus', + ['model'] = 'huntley', + ['price'] = 24500, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `huntley`, - ['shop'] = 'pdm', - }, - ['landstalker'] = { - ['name'] = 'Landstalker', - ['brand'] = 'Dundreary', - ['model'] = 'landstalker', - ['price'] = 12000, - ['category'] = 'suvs', + ['hash'] = `huntley`, + ['shop'] = 'pdm', + }, + ['landstalker'] = { + ['name'] = 'Landstalker', + ['brand'] = 'Dundreary', + ['model'] = 'landstalker', + ['price'] = 12000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `landstalker`, - ['shop'] = 'pdm', - }, - ['landstalker2'] = { - ['name'] = 'Landstalker XL', - ['brand'] = 'Dundreary', - ['model'] = 'landstalker2', - ['price'] = 26000, - ['category'] = 'suvs', + ['hash'] = `landstalker`, + ['shop'] = 'pdm', + }, + ['landstalker2'] = { + ['name'] = 'Landstalker XL', + ['brand'] = 'Dundreary', + ['model'] = 'landstalker2', + ['price'] = 26000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `landstalker2`, - ['shop'] = 'pdm', - }, - ['mesa'] = { - ['name'] = 'Mesa', - ['brand'] = 'Canis', - ['model'] = 'mesa', - ['price'] = 12000, - ['category'] = 'offroad', + ['hash'] = `landstalker2`, + ['shop'] = 'pdm', + }, + ['mesa'] = { + ['name'] = 'Mesa', + ['brand'] = 'Canis', + ['model'] = 'mesa', + ['price'] = 12000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `mesa`, - ['shop'] = 'pdm', - }, - ['novak'] = { --DLC - ['name'] = 'Novak', - ['brand'] = 'Lampadati', - ['model'] = 'novak', - ['price'] = 70000, - ['category'] = 'suvs', + ['hash'] = `mesa`, + ['shop'] = 'pdm', + }, + ['novak'] = { --DLC + ['name'] = 'Novak', + ['brand'] = 'Lampadati', + ['model'] = 'novak', + ['price'] = 70000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `novak`, - ['shop'] = 'pdm', - }, - ['patriot'] = { - ['name'] = 'Patriot', - ['brand'] = 'Mammoth', - ['model'] = 'patriot', - ['price'] = 21000, - ['category'] = 'suvs', + ['hash'] = `novak`, + ['shop'] = 'pdm', + }, + ['patriot'] = { + ['name'] = 'Patriot', + ['brand'] = 'Mammoth', + ['model'] = 'patriot', + ['price'] = 21000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `patriot`, - ['shop'] = 'pdm', - }, - ['radi'] = { - ['name'] = 'Radius', - ['brand'] = 'Vapid', - ['model'] = 'radi', - ['price'] = 18000, - ['category'] = 'suvs', + ['hash'] = `patriot`, + ['shop'] = 'pdm', + }, + ['radi'] = { + ['name'] = 'Radius', + ['brand'] = 'Vapid', + ['model'] = 'radi', + ['price'] = 18000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `radi`, - ['shop'] = 'pdm', - }, - ['rebla'] = { - ['name'] = 'Rebla GTS', - ['brand'] = 'Übermacht', - ['model'] = 'rebla', - ['price'] = 21000, - ['category'] = 'suvs', + ['hash'] = `radi`, + ['shop'] = 'pdm', + }, + ['rebla'] = { + ['name'] = 'Rebla GTS', + ['brand'] = 'Übermacht', + ['model'] = 'rebla', + ['price'] = 21000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `rebla`, - ['shop'] = 'pdm', - }, - ['rocoto'] = { - ['name'] = 'Rocoto', - ['brand'] = 'Obey', - ['model'] = 'rocoto', - ['price'] = 13000, - ['category'] = 'suvs', + ['hash'] = `rebla`, + ['shop'] = 'pdm', + }, + ['rocoto'] = { + ['name'] = 'Rocoto', + ['brand'] = 'Obey', + ['model'] = 'rocoto', + ['price'] = 13000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `rocoto`, - ['shop'] = 'pdm', - }, - ['seminole'] = { - ['name'] = 'Seminole', - ['brand'] = 'Canis', - ['model'] = 'seminole', - ['price'] = 20000, - ['category'] = 'suvs', + ['hash'] = `rocoto`, + ['shop'] = 'pdm', + }, + ['seminole'] = { + ['name'] = 'Seminole', + ['brand'] = 'Canis', + ['model'] = 'seminole', + ['price'] = 20000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `seminole`, - ['shop'] = 'pdm', - }, - ['seminole2'] = { - ['name'] = 'Seminole Frontier', - ['brand'] = 'Canis', - ['model'] = 'seminole2', - ['price'] = 13000, - ['category'] = 'suvs', + ['hash'] = `seminole`, + ['shop'] = 'pdm', + }, + ['seminole2'] = { + ['name'] = 'Seminole Frontier', + ['brand'] = 'Canis', + ['model'] = 'seminole2', + ['price'] = 13000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `seminole2`, - ['shop'] = 'pdm', - }, - ['serrano'] = { - ['name'] = 'Serrano', - ['brand'] = 'Benefactor', - ['model'] = 'serrano', - ['price'] = 48000, - ['category'] = 'suvs', + ['hash'] = `seminole2`, + ['shop'] = 'pdm', + }, + ['serrano'] = { + ['name'] = 'Serrano', + ['brand'] = 'Benefactor', + ['model'] = 'serrano', + ['price'] = 48000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `serrano`, - ['shop'] = 'pdm', - }, - ['toros'] = { --DLC - ['name'] = 'Toros', - ['brand'] = 'Pegassi', - ['model'] = 'toros', - ['price'] = 65000, - ['category'] = 'suvs', + ['hash'] = `serrano`, + ['shop'] = 'pdm', + }, + ['toros'] = { --DLC + ['name'] = 'Toros', + ['brand'] = 'Pegassi', + ['model'] = 'toros', + ['price'] = 65000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `toros`, - ['shop'] = 'pdm', - }, - ['xls'] = { - ['name'] = 'XLS', - ['brand'] = 'Benefactor', - ['model'] = 'xls', - ['price'] = 17000, - ['category'] = 'suvs', + ['hash'] = `toros`, + ['shop'] = 'pdm', + }, + ['xls'] = { + ['name'] = 'XLS', + ['brand'] = 'Benefactor', + ['model'] = 'xls', + ['price'] = 17000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `xls`, - ['shop'] = 'pdm', - }, - ['granger2'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Granger 3600LX', - ['brand'] = 'Declasse', - ['model'] = 'granger2', - ['price'] = 221000, - ['category'] = 'suvs', + ['hash'] = `xls`, + ['shop'] = 'pdm', + }, + ['granger2'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Granger 3600LX', + ['brand'] = 'Declasse', + ['model'] = 'granger2', + ['price'] = 221000, + ['category'] = 'suvs', ['categoryLabel'] = 'SUVs', - ['hash'] = `granger2`, - ['shop'] = 'pdm', - }, - --- Sedans - ['asea'] = { - ['name'] = 'Asea', - ['brand'] = 'Declasse', - ['model'] = 'asea', - ['price'] = 2500, - ['category'] = 'sedans', + ['hash'] = `granger2`, + ['shop'] = 'pdm', + }, + --- Sedans + ['asea'] = { + ['name'] = 'Asea', + ['brand'] = 'Declasse', + ['model'] = 'asea', + ['price'] = 2500, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `asea`, - ['shop'] = 'pdm', - }, - ['asterope'] = { - ['name'] = 'Asterope', - ['brand'] = 'Karin', - ['model'] = 'asterope', - ['price'] = 11000, - ['category'] = 'sedans', + ['hash'] = `asea`, + ['shop'] = 'pdm', + }, + ['asterope'] = { + ['name'] = 'Asterope', + ['brand'] = 'Karin', + ['model'] = 'asterope', + ['price'] = 11000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `asterope`, - ['shop'] = 'pdm', - }, - ['cog55'] = { - ['name'] = 'Cognoscenti 55', - ['brand'] = 'Enus', - ['model'] = 'cog55', - ['price'] = 22000, - ['category'] = 'sedans', + ['hash'] = `asterope`, + ['shop'] = 'pdm', + }, + ['cog55'] = { + ['name'] = 'Cognoscenti 55', + ['brand'] = 'Enus', + ['model'] = 'cog55', + ['price'] = 22000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `cog55`, - ['shop'] = 'pdm', - }, - ['cognoscenti'] = { - ['name'] = 'Cognoscenti', - ['brand'] = 'Enus', - ['model'] = 'cognoscenti', - ['price'] = 22500, - ['category'] = 'sedans', + ['hash'] = `cog55`, + ['shop'] = 'pdm', + }, + ['cognoscenti'] = { + ['name'] = 'Cognoscenti', + ['brand'] = 'Enus', + ['model'] = 'cognoscenti', + ['price'] = 22500, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `cognoscenti`, - ['shop'] = 'pdm', - }, - ['emperor'] = { - ['name'] = 'Emperor', - ['brand'] = 'Albany', - ['model'] = 'emperor', - ['price'] = 4250, - ['category'] = 'sedans', + ['hash'] = `cognoscenti`, + ['shop'] = 'pdm', + }, + ['emperor'] = { + ['name'] = 'Emperor', + ['brand'] = 'Albany', + ['model'] = 'emperor', + ['price'] = 4250, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `emperor`, - ['shop'] = 'pdm', - }, - ['fugitive'] = { - ['name'] = 'Fugitive', - ['brand'] = 'Cheval', - ['model'] = 'fugitive', - ['price'] = 20000, - ['category'] = 'sedans', + ['hash'] = `emperor`, + ['shop'] = 'pdm', + }, + ['fugitive'] = { + ['name'] = 'Fugitive', + ['brand'] = 'Cheval', + ['model'] = 'fugitive', + ['price'] = 20000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `fugitive`, - ['shop'] = 'pdm', - }, - ['glendale'] = { - ['name'] = 'Glendale', - ['brand'] = 'Benefactor', - ['model'] = 'glendale', - ['price'] = 3400, - ['category'] = 'sedans', + ['hash'] = `fugitive`, + ['shop'] = 'pdm', + }, + ['glendale'] = { + ['name'] = 'Glendale', + ['brand'] = 'Benefactor', + ['model'] = 'glendale', + ['price'] = 3400, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `glendale`, - ['shop'] = 'pdm', - }, - ['glendale2'] = { - ['name'] = 'Glendale', - ['brand'] = 'Benefactor', - ['model'] = 'glendale2', - ['price'] = 12000, - ['category'] = 'sedans', + ['hash'] = `glendale`, + ['shop'] = 'pdm', + }, + ['glendale2'] = { + ['name'] = 'Glendale', + ['brand'] = 'Benefactor', + ['model'] = 'glendale2', + ['price'] = 12000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `glendale2`, - ['shop'] = 'pdm', - }, - ['ingot'] = { - ['name'] = 'Ingot', - ['brand'] = 'Vulcar', - ['model'] = 'ingot', - ['price'] = 4999, - ['category'] = 'sedans', + ['hash'] = `glendale2`, + ['shop'] = 'pdm', + }, + ['ingot'] = { + ['name'] = 'Ingot', + ['brand'] = 'Vulcar', + ['model'] = 'ingot', + ['price'] = 4999, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `ingot`, - ['shop'] = 'pdm', - }, - ['intruder'] = { - ['name'] = 'Intruder', - ['brand'] = 'Karin', - ['model'] = 'intruder', - ['price'] = 11250, - ['category'] = 'sedans', + ['hash'] = `ingot`, + ['shop'] = 'pdm', + }, + ['intruder'] = { + ['name'] = 'Intruder', + ['brand'] = 'Karin', + ['model'] = 'intruder', + ['price'] = 11250, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `intruder`, - ['shop'] = 'pdm', - }, - ['premier'] = { - ['name'] = 'Premier', - ['brand'] = 'Declasse', - ['model'] = 'premier', - ['price'] = 12000, - ['category'] = 'sedans', + ['hash'] = `intruder`, + ['shop'] = 'pdm', + }, + ['premier'] = { + ['name'] = 'Premier', + ['brand'] = 'Declasse', + ['model'] = 'premier', + ['price'] = 12000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `premier`, - ['shop'] = 'pdm', - }, - ['primo'] = { - ['name'] = 'Primo', - ['brand'] = 'Albany', - ['model'] = 'primo', - ['price'] = 5000, - ['category'] = 'sedans', + ['hash'] = `premier`, + ['shop'] = 'pdm', + }, + ['primo'] = { + ['name'] = 'Primo', + ['brand'] = 'Albany', + ['model'] = 'primo', + ['price'] = 5000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `primo`, - ['shop'] = 'pdm', - }, - ['primo2'] = { - ['name'] = 'Primo Custom', - ['brand'] = 'Albany', - ['model'] = 'primo2', - ['price'] = 14500, - ['category'] = 'sedans', + ['hash'] = `primo`, + ['shop'] = 'pdm', + }, + ['primo2'] = { + ['name'] = 'Primo Custom', + ['brand'] = 'Albany', + ['model'] = 'primo2', + ['price'] = 14500, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `primo2`, - ['shop'] = 'pdm', - }, - ['regina'] = { - ['name'] = 'Regina', - ['brand'] = 'Dundreary', - ['model'] = 'regina', - ['price'] = 7000, - ['category'] = 'sedans', + ['hash'] = `primo2`, + ['shop'] = 'pdm', + }, + ['regina'] = { + ['name'] = 'Regina', + ['brand'] = 'Dundreary', + ['model'] = 'regina', + ['price'] = 7000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `regina`, - ['shop'] = 'pdm', - }, - ['stafford'] = { --DLC - ['name'] = 'Stafford', - ['brand'] = 'Enus', - ['model'] = 'stafford', - ['price'] = 30000, - ['category'] = 'sedans', + ['hash'] = `regina`, + ['shop'] = 'pdm', + }, + ['stafford'] = { --DLC + ['name'] = 'Stafford', + ['brand'] = 'Enus', + ['model'] = 'stafford', + ['price'] = 30000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `stafford`, - ['shop'] = 'pdm', - }, - ['stanier'] = { - ['name'] = 'Stanier', - ['brand'] = 'Vapid', - ['model'] = 'stanier', - ['price'] = 19000, - ['category'] = 'sedans', + ['hash'] = `stafford`, + ['shop'] = 'pdm', + }, + ['stanier'] = { + ['name'] = 'Stanier', + ['brand'] = 'Vapid', + ['model'] = 'stanier', + ['price'] = 19000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `stanier`, - ['shop'] = 'pdm', - }, - ['stratum'] = { - ['name'] = 'Stratum', - ['brand'] = 'Zirconium', - ['model'] = 'stratum', - ['price'] = 15000, - ['category'] = 'sedans', + ['hash'] = `stanier`, + ['shop'] = 'pdm', + }, + ['stratum'] = { + ['name'] = 'Stratum', + ['brand'] = 'Zirconium', + ['model'] = 'stratum', + ['price'] = 15000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `stratum`, - ['shop'] = 'pdm', - }, - ['stretch'] = { - ['name'] = 'Stretch', - ['brand'] = 'Dundreary', - ['model'] = 'stretch', - ['price'] = 19000, - ['category'] = 'sedans', + ['hash'] = `stratum`, + ['shop'] = 'pdm', + }, + ['stretch'] = { + ['name'] = 'Stretch', + ['brand'] = 'Dundreary', + ['model'] = 'stretch', + ['price'] = 19000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `stretch`, - ['shop'] = 'pdm', - }, - ['superd'] = { - ['name'] = 'Super Diamond', - ['brand'] = 'Enus', - ['model'] = 'superd', - ['price'] = 17000, - ['category'] = 'sedans', + ['hash'] = `stretch`, + ['shop'] = 'pdm', + }, + ['superd'] = { + ['name'] = 'Super Diamond', + ['brand'] = 'Enus', + ['model'] = 'superd', + ['price'] = 17000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `superd`, - ['shop'] = 'pdm', - }, - ['surge'] = { - ['name'] = 'Surge', - ['brand'] = 'Cheval', - ['model'] = 'surge', - ['price'] = 20000, - ['category'] = 'sedans', + ['hash'] = `superd`, + ['shop'] = 'pdm', + }, + ['surge'] = { + ['name'] = 'Surge', + ['brand'] = 'Cheval', + ['model'] = 'surge', + ['price'] = 20000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `surge`, - ['shop'] = 'pdm', - }, - ['tailgater'] = { - ['name'] = 'Tailgater', - ['brand'] = 'Obey', - ['model'] = 'tailgater', - ['price'] = 22000, - ['category'] = 'sedans', + ['hash'] = `surge`, + ['shop'] = 'pdm', + }, + ['tailgater'] = { + ['name'] = 'Tailgater', + ['brand'] = 'Obey', + ['model'] = 'tailgater', + ['price'] = 22000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `tailgater`, - ['shop'] = 'pdm', - }, - ['warrener'] = { - ['name'] = 'Warrener', - ['brand'] = 'Vulcar', - ['model'] = 'warrener', - ['price'] = 4000, - ['category'] = 'sedans', + ['hash'] = `tailgater`, + ['shop'] = 'pdm', + }, + ['warrener'] = { + ['name'] = 'Warrener', + ['brand'] = 'Vulcar', + ['model'] = 'warrener', + ['price'] = 4000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `warrener`, - ['shop'] = 'pdm', - }, - ['washington'] = { - ['name'] = 'Washington', - ['brand'] = 'Albany', - ['model'] = 'washington', - ['price'] = 7000, - ['category'] = 'sedans', + ['hash'] = `warrener`, + ['shop'] = 'pdm', + }, + ['washington'] = { + ['name'] = 'Washington', + ['brand'] = 'Albany', + ['model'] = 'washington', + ['price'] = 7000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `washington`, - ['shop'] = 'pdm', - }, - ['tailgater2'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Tailgater S', - ['brand'] = 'Obey', - ['model'] = 'tailgater2', - ['price'] = 51000, - ['category'] = 'sedans', + ['hash'] = `washington`, + ['shop'] = 'pdm', + }, + ['tailgater2'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Tailgater S', + ['brand'] = 'Obey', + ['model'] = 'tailgater2', + ['price'] = 51000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `tailgater2`, - ['shop'] = 'pdm', - }, - ['cinquemila'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Lampadati', - ['brand'] = 'Cinquemila', - ['model'] = 'cinquemila', - ['price'] = 125000, - ['category'] = 'sedans', + ['hash'] = `tailgater2`, + ['shop'] = 'pdm', + }, + ['cinquemila'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Lampadati', + ['brand'] = 'Cinquemila', + ['model'] = 'cinquemila', + ['price'] = 125000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `cinquemila`, - ['shop'] = 'pdm', - }, - ['iwagen'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Obey', - ['brand'] = 'I-Wagen', - ['model'] = 'iwagen', - ['price'] = 225000, - ['category'] = 'sedans', + ['hash'] = `cinquemila`, + ['shop'] = 'pdm', + }, + ['iwagen'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Obey', + ['brand'] = 'I-Wagen', + ['model'] = 'iwagen', + ['price'] = 225000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `iwagen`, - ['shop'] = 'pdm', - }, - ['astron'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Pfister', - ['brand'] = 'Astron', - ['model'] = 'astron', - ['price'] = 150000, - ['category'] = 'sedans', + ['hash'] = `iwagen`, + ['shop'] = 'pdm', + }, + ['astron'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Pfister', + ['brand'] = 'Astron', + ['model'] = 'astron', + ['price'] = 150000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `astron`, - ['shop'] = 'pdm', - }, - ['baller7'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Baller ST', - ['brand'] = 'Gallivanter', - ['model'] = 'baller7', - ['price'] = 145000, - ['category'] = 'sedans', + ['hash'] = `astron`, + ['shop'] = 'pdm', + }, + ['baller7'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Baller ST', + ['brand'] = 'Gallivanter', + ['model'] = 'baller7', + ['price'] = 145000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `baller7`, - ['shop'] = 'pdm', - }, - ['comet7'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Comet', - ['brand'] = 'S2 Cabrio', - ['model'] = 'comet7', - ['price'] = 25000, - ['category'] = 'sedans', + ['hash'] = `baller7`, + ['shop'] = 'pdm', + }, + ['comet7'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Comet', + ['brand'] = 'S2 Cabrio', + ['model'] = 'comet7', + ['price'] = 25000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `comet7`, - ['shop'] = 'pdm', - }, - ['deity'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Deity', - ['brand'] = 'Enus', - ['model'] = 'deity', - ['price'] = 505000, - ['category'] = 'sedans', + ['hash'] = `comet7`, + ['shop'] = 'pdm', + }, + ['deity'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Deity', + ['brand'] = 'Enus', + ['model'] = 'deity', + ['price'] = 505000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `deity`, - ['shop'] = 'pdm', - }, - ['jubilee'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Jubilee', - ['brand'] = 'Enus', - ['model'] = 'jubilee', - ['price'] = 485000, - ['category'] = 'sedans', + ['hash'] = `deity`, + ['shop'] = 'pdm', + }, + ['jubilee'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Jubilee', + ['brand'] = 'Enus', + ['model'] = 'jubilee', + ['price'] = 485000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `jubilee`, - ['shop'] = 'pdm', - }, - ['patriot3'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Patriot', - ['brand'] = 'Mil-Spec', - ['model'] = 'patriot3', - ['price'] = 270000, - ['category'] = 'sedans', + ['hash'] = `jubilee`, + ['shop'] = 'pdm', + }, + ['patriot3'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Patriot', + ['brand'] = 'Mil-Spec', + ['model'] = 'patriot3', + ['price'] = 270000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `patriot3`, - ['shop'] = 'pdm', - }, - --- Sports - ['alpha'] = { - ['name'] = 'Alpha', - ['brand'] = 'Albany', - ['model'] = 'alpha', - ['price'] = 53000, - ['category'] = 'sports', + ['hash'] = `patriot3`, + ['shop'] = 'pdm', + }, + --- Sports + ['alpha'] = { + ['name'] = 'Alpha', + ['brand'] = 'Albany', + ['model'] = 'alpha', + ['price'] = 53000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `alpha`, - ['shop'] = 'luxury', - }, - ['banshee'] = { - ['name'] = 'Banshee', - ['brand'] = 'Bravado', - ['model'] = 'banshee', - ['price'] = 56000, - ['category'] = 'sports', + ['hash'] = `alpha`, + ['shop'] = 'luxury', + }, + ['banshee'] = { + ['name'] = 'Banshee', + ['brand'] = 'Bravado', + ['model'] = 'banshee', + ['price'] = 56000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `banshee`, - ['shop'] = 'luxury', - }, - ['bestiagts'] = { - ['name'] = 'Bestia GTS', - ['brand'] = 'Grotti', - ['model'] = 'bestiagts', - ['price'] = 37000, - ['category'] = 'sports', + ['hash'] = `banshee`, + ['shop'] = 'luxury', + }, + ['bestiagts'] = { + ['name'] = 'Bestia GTS', + ['brand'] = 'Grotti', + ['model'] = 'bestiagts', + ['price'] = 37000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `bestiagts`, - ['shop'] = 'luxury', - }, - ['blista2'] = { - ['name'] = 'Blista Compact', - ['brand'] = 'Dinka', - ['model'] = 'blista2', - ['price'] = 18950, - ['category'] = 'compacts', + ['hash'] = `bestiagts`, + ['shop'] = 'luxury', + }, + ['blista2'] = { + ['name'] = 'Blista Compact', + ['brand'] = 'Dinka', + ['model'] = 'blista2', + ['price'] = 18950, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `blista2`, - ['shop'] = 'pdm', - }, - ['blista3'] = { - ['name'] = 'Blista Go Go Monkey', - ['brand'] = 'Dinka', - ['model'] = 'blista3', - ['price'] = 15000, - ['category'] = 'compacts', + ['hash'] = `blista2`, + ['shop'] = 'pdm', + }, + ['blista3'] = { + ['name'] = 'Blista Go Go Monkey', + ['brand'] = 'Dinka', + ['model'] = 'blista3', + ['price'] = 15000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `blista3`, - ['shop'] = 'pdm', - }, - ['buffalo'] = { - ['name'] = 'Buffalo', - ['brand'] = 'Bravado', - ['model'] = 'buffalo', - ['price'] = 18750, - ['category'] = 'sports', + ['hash'] = `blista3`, + ['shop'] = 'pdm', + }, + ['buffalo'] = { + ['name'] = 'Buffalo', + ['brand'] = 'Bravado', + ['model'] = 'buffalo', + ['price'] = 18750, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `buffalo`, - ['shop'] = 'luxury', - }, - ['buffalo2'] = { - ['name'] = 'Buffalo S', - ['brand'] = 'Bravado', - ['model'] = 'buffalo2', - ['price'] = 24500, - ['category'] = 'sports', + ['hash'] = `buffalo`, + ['shop'] = 'luxury', + }, + ['buffalo2'] = { + ['name'] = 'Buffalo S', + ['brand'] = 'Bravado', + ['model'] = 'buffalo2', + ['price'] = 24500, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `buffalo2`, - ['shop'] = 'luxury', - }, - ['carbonizzare'] = { - ['name'] = 'Carbonizzare', - ['brand'] = 'Grotti', - ['model'] = 'carbonizzare', - ['price'] = 155000, - ['category'] = 'sports', + ['hash'] = `buffalo2`, + ['shop'] = 'luxury', + }, + ['carbonizzare'] = { + ['name'] = 'Carbonizzare', + ['brand'] = 'Grotti', + ['model'] = 'carbonizzare', + ['price'] = 155000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `carbonizzare`, - ['shop'] = 'luxury', - }, - ['comet2'] = { - ['name'] = 'Comet', - ['brand'] = 'Pfister', - ['model'] = 'comet2', - ['price'] = 130000, - ['category'] = 'sports', + ['hash'] = `carbonizzare`, + ['shop'] = 'luxury', + }, + ['comet2'] = { + ['name'] = 'Comet', + ['brand'] = 'Pfister', + ['model'] = 'comet2', + ['price'] = 130000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `comet2`, - ['shop'] = 'luxury', - }, - ['comet3'] = { - ['name'] = 'Comet Retro Custom', - ['brand'] = 'Pfister', - ['model'] = 'comet3', - ['price'] = 175000, - ['category'] = 'sports', + ['hash'] = `comet2`, + ['shop'] = 'luxury', + }, + ['comet3'] = { + ['name'] = 'Comet Retro Custom', + ['brand'] = 'Pfister', + ['model'] = 'comet3', + ['price'] = 175000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `comet3`, - ['shop'] = 'luxury', - }, - ['comet4'] = { - ['name'] = 'Comet Safari', - ['brand'] = 'Pfister', - ['model'] = 'comet4', - ['price'] = 110000, - ['category'] = 'sports', + ['hash'] = `comet3`, + ['shop'] = 'luxury', + }, + ['comet4'] = { + ['name'] = 'Comet Safari', + ['brand'] = 'Pfister', + ['model'] = 'comet4', + ['price'] = 110000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `comet4`, - ['shop'] = 'luxury', - }, - ['comet5'] = { - ['name'] = 'Comet SR', - ['brand'] = 'Pfister', - ['model'] = 'comet5', - ['price'] = 155000, - ['category'] = 'sports', + ['hash'] = `comet4`, + ['shop'] = 'luxury', + }, + ['comet5'] = { + ['name'] = 'Comet SR', + ['brand'] = 'Pfister', + ['model'] = 'comet5', + ['price'] = 155000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `comet5`, - ['shop'] = 'luxury', - }, - ['coquette'] = { - ['name'] = 'Coquette', - ['brand'] = 'Invetero', - ['model'] = 'coquette', - ['price'] = 145000, - ['category'] = 'sports', + ['hash'] = `comet5`, + ['shop'] = 'luxury', + }, + ['coquette'] = { + ['name'] = 'Coquette', + ['brand'] = 'Invetero', + ['model'] = 'coquette', + ['price'] = 145000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `coquette`, - ['shop'] = 'luxury', - }, - ['coquette2'] = { - ['name'] = 'Coquette Classic', - ['brand'] = 'Invetero', - ['model'] = 'coquette2', - ['price'] = 165000, - ['category'] = 'sportsclassics', + ['hash'] = `coquette`, + ['shop'] = 'luxury', + }, + ['coquette2'] = { + ['name'] = 'Coquette Classic', + ['brand'] = 'Invetero', + ['model'] = 'coquette2', + ['price'] = 165000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `coquette2`, - ['shop'] = 'pdm', - }, - ['coquette4'] = { - ['name'] = 'Coquette D10', - ['brand'] = 'Invetero', - ['model'] = 'coquette4', - ['price'] = 220000, - ['category'] = 'sports', + ['hash'] = `coquette2`, + ['shop'] = 'pdm', + }, + ['coquette4'] = { + ['name'] = 'Coquette D10', + ['brand'] = 'Invetero', + ['model'] = 'coquette4', + ['price'] = 220000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `coquette4`, - ['shop'] = 'luxury', - }, - ['drafter'] = { --DLC - ['name'] = '8F Drafter', - ['brand'] = 'Obey', - ['model'] = 'drafter', - ['price'] = 80000, - ['category'] = 'sports', + ['hash'] = `coquette4`, + ['shop'] = 'luxury', + }, + ['drafter'] = { --DLC + ['name'] = '8F Drafter', + ['brand'] = 'Obey', + ['model'] = 'drafter', + ['price'] = 80000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `drafter`, - ['shop'] = 'luxury', - }, - ['deveste'] = { --DLC - ['name'] = 'Deveste', - ['brand'] = 'Principe', - ['model'] = 'deveste', - ['price'] = 234000, - ['category'] = 'super', + ['hash'] = `drafter`, + ['shop'] = 'luxury', + }, + ['deveste'] = { --DLC + ['name'] = 'Deveste', + ['brand'] = 'Principe', + ['model'] = 'deveste', + ['price'] = 234000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `deveste`, - ['shop'] = 'luxury', - }, - ['elegy'] = { --DLC - ['name'] = 'Elegy Retro Custom', - ['brand'] = 'Annis', - ['model'] = 'elegy', - ['price'] = 145000, - ['category'] = 'sports', + ['hash'] = `deveste`, + ['shop'] = 'luxury', + }, + ['elegy'] = { --DLC + ['name'] = 'Elegy Retro Custom', + ['brand'] = 'Annis', + ['model'] = 'elegy', + ['price'] = 145000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `elegy`, - ['shop'] = 'luxury', - }, - ['elegy2'] = { - ['name'] = 'Elegy RH8', - ['brand'] = 'Annis', - ['model'] = 'elegy2', - ['price'] = 150000, - ['category'] = 'sports', + ['hash'] = `elegy`, + ['shop'] = 'luxury', + }, + ['elegy2'] = { + ['name'] = 'Elegy RH8', + ['brand'] = 'Annis', + ['model'] = 'elegy2', + ['price'] = 150000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `elegy2`, - ['shop'] = 'luxury', - }, - ['feltzer2'] = { - ['name'] = 'Feltzer', - ['brand'] = 'Benefactor', - ['model'] = 'feltzer2', - ['price'] = 97000, - ['category'] = 'sports', + ['hash'] = `elegy2`, + ['shop'] = 'luxury', + }, + ['feltzer2'] = { + ['name'] = 'Feltzer', + ['brand'] = 'Benefactor', + ['model'] = 'feltzer2', + ['price'] = 97000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `feltzer2`, - ['shop'] = 'luxury', - }, - ['flashgt'] = { - ['name'] = 'Flash GT', - ['brand'] = 'Vapid', - ['model'] = 'flashgt', - ['price'] = 48000, - ['category'] = 'sports', + ['hash'] = `feltzer2`, + ['shop'] = 'luxury', + }, + ['flashgt'] = { + ['name'] = 'Flash GT', + ['brand'] = 'Vapid', + ['model'] = 'flashgt', + ['price'] = 48000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `flashgt`, - ['shop'] = 'luxury', - }, - ['furoregt'] = { - ['name'] = 'Furore GT', - ['brand'] = 'Lampadati', - ['model'] = 'furoregt', - ['price'] = 78000, - ['category'] = 'sports', + ['hash'] = `flashgt`, + ['shop'] = 'luxury', + }, + ['furoregt'] = { + ['name'] = 'Furore GT', + ['brand'] = 'Lampadati', + ['model'] = 'furoregt', + ['price'] = 78000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `furoregt`, - ['shop'] = 'luxury', - }, - ['futo'] = { - ['name'] = 'Futo', - ['brand'] = 'Karin', - ['model'] = 'futo', - ['price'] = 17500, - ['category'] = 'coupes', + ['hash'] = `furoregt`, + ['shop'] = 'luxury', + }, + ['futo'] = { + ['name'] = 'Futo', + ['brand'] = 'Karin', + ['model'] = 'futo', + ['price'] = 17500, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `futo`, - ['shop'] = 'pdm', - }, - ['gb200'] = { - ['name'] = 'GB 200', - ['brand'] = 'Vapid', - ['model'] = 'gb200', - ['price'] = 140000, - ['category'] = 'sports', + ['hash'] = `futo`, + ['shop'] = 'pdm', + }, + ['gb200'] = { + ['name'] = 'GB 200', + ['brand'] = 'Vapid', + ['model'] = 'gb200', + ['price'] = 140000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `gb200`, - ['shop'] = 'luxury', - }, - ['komoda'] = { - ['name'] = 'Komoda', - ['brand'] = 'Lampadati', - ['model'] = 'komoda', - ['price'] = 55000, - ['category'] = 'sports', + ['hash'] = `gb200`, + ['shop'] = 'luxury', + }, + ['komoda'] = { + ['name'] = 'Komoda', + ['brand'] = 'Lampadati', + ['model'] = 'komoda', + ['price'] = 55000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `komoda`, - ['shop'] = 'luxury', - }, - ['imorgon'] = { - ['name'] = 'Imorgon', - ['brand'] = 'Overflod', - ['model'] = 'imorgon', - ['price'] = 120000, - ['category'] = 'sports', + ['hash'] = `komoda`, + ['shop'] = 'luxury', + }, + ['imorgon'] = { + ['name'] = 'Imorgon', + ['brand'] = 'Overflod', + ['model'] = 'imorgon', + ['price'] = 120000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `imorgon`, - ['shop'] = 'luxury', - }, - ['issi7'] = { --DLC - ['name'] = 'Issi Sport', - ['brand'] = 'Weeny', - ['model'] = 'issi7', - ['price'] = 100000, - ['category'] = 'compacts', + ['hash'] = `imorgon`, + ['shop'] = 'luxury', + }, + ['issi7'] = { --DLC + ['name'] = 'Issi Sport', + ['brand'] = 'Weeny', + ['model'] = 'issi7', + ['price'] = 100000, + ['category'] = 'compacts', ['categoryLabel'] = 'Compacts', - ['hash'] = `issi7`, - ['shop'] = 'pdm', - }, - ['italigto'] = { --DLC - ['name'] = 'Itali GTO', - ['brand'] = 'Progen', - ['model'] = 'italigto', - ['price'] = 260000, - ['category'] = 'sports', + ['hash'] = `issi7`, + ['shop'] = 'pdm', + }, + ['italigto'] = { --DLC + ['name'] = 'Itali GTO', + ['brand'] = 'Progen', + ['model'] = 'italigto', + ['price'] = 260000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `italigto`, - ['shop'] = 'luxury', - }, - ['jugular'] = { --DLC - ['name'] = 'Jugular', - ['brand'] = 'Ocelot', - ['model'] = 'jugular', - ['price'] = 80000, - ['category'] = 'sports', + ['hash'] = `italigto`, + ['shop'] = 'luxury', + }, + ['jugular'] = { --DLC + ['name'] = 'Jugular', + ['brand'] = 'Ocelot', + ['model'] = 'jugular', + ['price'] = 80000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `jugular`, - ['shop'] = 'luxury', - }, - ['jester'] = { - ['name'] = 'Jester', - ['brand'] = 'Dinka', - ['model'] = 'jester', - ['price'] = 132250, - ['category'] = 'sports', + ['hash'] = `jugular`, + ['shop'] = 'luxury', + }, + ['jester'] = { + ['name'] = 'Jester', + ['brand'] = 'Dinka', + ['model'] = 'jester', + ['price'] = 132250, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `jester`, - ['shop'] = 'luxury', - }, - ['jester2'] = { - ['name'] = 'Jester Racecar', - ['brand'] = 'Dinka', - ['model'] = 'jester2', - ['price'] = 210000, - ['category'] = 'sports', + ['hash'] = `jester`, + ['shop'] = 'luxury', + }, + ['jester2'] = { + ['name'] = 'Jester Racecar', + ['brand'] = 'Dinka', + ['model'] = 'jester2', + ['price'] = 210000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `jester2`, - ['shop'] = 'luxury', - }, - ['jester3'] = { - ['name'] = 'Jester Classic', - ['brand'] = 'Dinka', - ['model'] = 'jester3', - ['price'] = 85000, - ['category'] = 'sports', + ['hash'] = `jester2`, + ['shop'] = 'luxury', + }, + ['jester3'] = { + ['name'] = 'Jester Classic', + ['brand'] = 'Dinka', + ['model'] = 'jester3', + ['price'] = 85000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `jester3`, - ['shop'] = 'luxury', - }, - ['khamelion'] = { - ['name'] = 'Khamelion', - ['brand'] = 'Hijak', - ['model'] = 'khamelion', - ['price'] = 90000, - ['category'] = 'sports', + ['hash'] = `jester3`, + ['shop'] = 'luxury', + }, + ['khamelion'] = { + ['name'] = 'Khamelion', + ['brand'] = 'Hijak', + ['model'] = 'khamelion', + ['price'] = 90000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `khamelion`, - ['shop'] = 'luxury', - }, - ['kuruma'] = { - ['name'] = 'Kuruma', - ['brand'] = 'Karin', - ['model'] = 'kuruma', - ['price'] = 72000, - ['category'] = 'sports', + ['hash'] = `khamelion`, + ['shop'] = 'luxury', + }, + ['kuruma'] = { + ['name'] = 'Kuruma', + ['brand'] = 'Karin', + ['model'] = 'kuruma', + ['price'] = 72000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `kuruma`, - ['shop'] = 'luxury', - }, - ['kuruma2'] = { - ['name'] = 'kuruma2', - ['brand'] = 'Karin2', - ['model'] = 'kuruma2', - ['price'] = 72000, - ['category'] = 'sports', + ['hash'] = `kuruma`, + ['shop'] = 'luxury', + }, + ['kuruma2'] = { + ['name'] = 'kuruma2', + ['brand'] = 'Karin2', + ['model'] = 'kuruma2', + ['price'] = 72000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `kuruma2`, - ['shop'] = 'luxury', - }, - ['locust'] = { --DLC - ['name'] = 'Locust', - ['brand'] = 'Ocelot', - ['model'] = 'locust', - ['price'] = 200000, - ['category'] = 'sports', + ['hash'] = `kuruma2`, + ['shop'] = 'luxury', + }, + ['locust'] = { --DLC + ['name'] = 'Locust', + ['brand'] = 'Ocelot', + ['model'] = 'locust', + ['price'] = 200000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `locust`, - ['shop'] = 'luxury', - }, - ['lynx'] = { - ['name'] = 'Lynx', - ['brand'] = 'Ocelot', - ['model'] = 'lynx', - ['price'] = 150000, - ['category'] = 'sports', + ['hash'] = `locust`, + ['shop'] = 'luxury', + }, + ['lynx'] = { + ['name'] = 'Lynx', + ['brand'] = 'Ocelot', + ['model'] = 'lynx', + ['price'] = 150000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `lynx`, - ['shop'] = 'luxury', - }, - ['massacro'] = { - ['name'] = 'Massacro', - ['brand'] = 'Dewbauchee', - ['model'] = 'massacro', - ['price'] = 110000, - ['category'] = 'sports', + ['hash'] = `lynx`, + ['shop'] = 'luxury', + }, + ['massacro'] = { + ['name'] = 'Massacro', + ['brand'] = 'Dewbauchee', + ['model'] = 'massacro', + ['price'] = 110000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `massacro`, - ['shop'] = 'luxury', - }, - ['massacro2'] = { - ['name'] = 'Massacro Racecar', - ['brand'] = 'Dewbauchee', - ['model'] = 'massacro2', - ['price'] = 80000, - ['category'] = 'sports', + ['hash'] = `massacro`, + ['shop'] = 'luxury', + }, + ['massacro2'] = { + ['name'] = 'Massacro Racecar', + ['brand'] = 'Dewbauchee', + ['model'] = 'massacro2', + ['price'] = 80000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `massacro2`, - ['shop'] = 'luxury', - }, - ['neo'] = { --DLC - ['name'] = 'Neo', - ['brand'] = 'Vysser', - ['model'] = 'neo', - ['price'] = 230000, - ['category'] = 'sports', + ['hash'] = `massacro2`, + ['shop'] = 'luxury', + }, + ['neo'] = { --DLC + ['name'] = 'Neo', + ['brand'] = 'Vysser', + ['model'] = 'neo', + ['price'] = 230000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `neo`, - ['shop'] = 'luxury', - }, - ['neon'] = { --DLC - ['name'] = 'Neon', - ['brand'] = 'Pfister', - ['model'] = 'neon', - ['price'] = 220000, - ['category'] = 'sports', + ['hash'] = `neo`, + ['shop'] = 'luxury', + }, + ['neon'] = { --DLC + ['name'] = 'Neon', + ['brand'] = 'Pfister', + ['model'] = 'neon', + ['price'] = 220000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `neon`, - ['shop'] = 'luxury', - }, - ['ninef'] = { - ['name'] = '9F', - ['brand'] = 'Obey', - ['model'] = 'ninef', - ['price'] = 95000, - ['category'] = 'sports', + ['hash'] = `neon`, + ['shop'] = 'luxury', + }, + ['ninef'] = { + ['name'] = '9F', + ['brand'] = 'Obey', + ['model'] = 'ninef', + ['price'] = 95000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `ninef`, - ['shop'] = 'luxury', - }, - ['ninef2'] = { - ['name'] = '9F Cabrio', - ['brand'] = 'Obey', - ['model'] = 'ninef2', - ['price'] = 105000, - ['category'] = 'sports', + ['hash'] = `ninef`, + ['shop'] = 'luxury', + }, + ['ninef2'] = { + ['name'] = '9F Cabrio', + ['brand'] = 'Obey', + ['model'] = 'ninef2', + ['price'] = 105000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `ninef2`, - ['shop'] = 'luxury', - }, - ['omnis'] = { - ['name'] = 'Omnis', - ['brand'] = 'Wow', - ['model'] = 'omnis', - ['price'] = 90000, - ['category'] = 'sports', + ['hash'] = `ninef2`, + ['shop'] = 'luxury', + }, + ['omnis'] = { + ['name'] = 'Omnis', + ['brand'] = 'Wow', + ['model'] = 'omnis', + ['price'] = 90000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `omnis`, - ['shop'] = 'luxury', - }, - ['paragon'] = { --DLC - ['name'] = 'Paragon', - ['brand'] = 'Enus', - ['model'] = 'paragon', - ['price'] = 60000, - ['category'] = 'sports', + ['hash'] = `omnis`, + ['shop'] = 'luxury', + }, + ['paragon'] = { --DLC + ['name'] = 'Paragon', + ['brand'] = 'Enus', + ['model'] = 'paragon', + ['price'] = 60000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `paragon`, - ['shop'] = 'luxury', - }, - ['pariah'] = { - ['name'] = 'Pariah', - ['brand'] = 'Ocelot', - ['model'] = 'pariah', - ['price'] = 90000, - ['category'] = 'sports', + ['hash'] = `paragon`, + ['shop'] = 'luxury', + }, + ['pariah'] = { + ['name'] = 'Pariah', + ['brand'] = 'Ocelot', + ['model'] = 'pariah', + ['price'] = 90000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `pariah`, - ['shop'] = 'luxury', - }, - ['penumbra'] = { - ['name'] = 'Penumbra', - ['brand'] = 'Maibatsu', - ['model'] = 'penumbra', - ['price'] = 22000, - ['category'] = 'sports', + ['hash'] = `pariah`, + ['shop'] = 'luxury', + }, + ['penumbra'] = { + ['name'] = 'Penumbra', + ['brand'] = 'Maibatsu', + ['model'] = 'penumbra', + ['price'] = 22000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `penumbra`, - ['shop'] = 'luxury', - }, - ['penumbra2'] = { - ['name'] = 'Penumbra FF', - ['brand'] = 'Maibatsu', - ['model'] = 'penumbra2', - ['price'] = 30000, - ['category'] = 'sports', + ['hash'] = `penumbra`, + ['shop'] = 'luxury', + }, + ['penumbra2'] = { + ['name'] = 'Penumbra FF', + ['brand'] = 'Maibatsu', + ['model'] = 'penumbra2', + ['price'] = 30000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `penumbra2`, - ['shop'] = 'luxury', - }, - ['rapidgt'] = { - ['name'] = 'Rapid GT', - ['brand'] = 'Dewbauchee', - ['model'] = 'rapidgt', - ['price'] = 86000, - ['category'] = 'sports', + ['hash'] = `penumbra2`, + ['shop'] = 'luxury', + }, + ['rapidgt'] = { + ['name'] = 'Rapid GT', + ['brand'] = 'Dewbauchee', + ['model'] = 'rapidgt', + ['price'] = 86000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `rapidgt`, - ['shop'] = 'luxury', - }, - ['rapidgt2'] = { - ['name'] = 'Rapid GT Convertible', - ['brand'] = 'Dewbauchee', - ['model'] = 'rapidgt2', - ['price'] = 92000, - ['category'] = 'sports', + ['hash'] = `rapidgt`, + ['shop'] = 'luxury', + }, + ['rapidgt2'] = { + ['name'] = 'Rapid GT Convertible', + ['brand'] = 'Dewbauchee', + ['model'] = 'rapidgt2', + ['price'] = 92000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `rapidgt2`, - ['shop'] = 'luxury', - }, - ['raptor'] = { - ['name'] = 'Raptor', - ['brand'] = 'BF', - ['model'] = 'raptor', - ['price'] = 90000, - ['category'] = 'sports', + ['hash'] = `rapidgt2`, + ['shop'] = 'luxury', + }, + ['raptor'] = { + ['name'] = 'Raptor', + ['brand'] = 'BF', + ['model'] = 'raptor', + ['price'] = 90000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `raptor`, - ['shop'] = 'luxury', - }, - ['revolter'] = { - ['name'] = 'Revolter', - ['brand'] = 'Ubermacht', - ['model'] = 'revolter', - ['price'] = 95000, - ['category'] = 'sports', + ['hash'] = `raptor`, + ['shop'] = 'luxury', + }, + ['revolter'] = { + ['name'] = 'Revolter', + ['brand'] = 'Ubermacht', + ['model'] = 'revolter', + ['price'] = 95000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `revolter`, - ['shop'] = 'luxury', - }, - ['ruston'] = { - ['name'] = 'Ruston', - ['brand'] = 'Hijak', - ['model'] = 'ruston', - ['price'] = 130000, - ['category'] = 'sports', + ['hash'] = `revolter`, + ['shop'] = 'luxury', + }, + ['ruston'] = { + ['name'] = 'Ruston', + ['brand'] = 'Hijak', + ['model'] = 'ruston', + ['price'] = 130000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `ruston`, - ['shop'] = 'luxury', - }, - ['schafter2'] = { - ['name'] = 'Schafter', - ['brand'] = 'Benefactor', - ['model'] = 'schafter2', - ['price'] = 16000, - ['category'] = 'sedans', + ['hash'] = `ruston`, + ['shop'] = 'luxury', + }, + ['schafter2'] = { + ['name'] = 'Schafter', + ['brand'] = 'Benefactor', + ['model'] = 'schafter2', + ['price'] = 16000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `schafter2`, - ['shop'] = 'pdm', - }, - ['schafter3'] = { - ['name'] = 'Schafter V12', - ['brand'] = 'Benefactor', - ['model'] = 'schafter3', - ['price'] = 35000, - ['category'] = 'sports', + ['hash'] = `schafter2`, + ['shop'] = 'pdm', + }, + ['schafter3'] = { + ['name'] = 'Schafter V12', + ['brand'] = 'Benefactor', + ['model'] = 'schafter3', + ['price'] = 35000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `schafter3`, - ['shop'] = 'luxury', - }, - ['schafter4'] = { - ['name'] = 'Schafter LWB', - ['brand'] = 'Benefactor', - ['model'] = 'schafter4', - ['price'] = 21000, - ['category'] = 'sports', + ['hash'] = `schafter3`, + ['shop'] = 'luxury', + }, + ['schafter4'] = { + ['name'] = 'Schafter LWB', + ['brand'] = 'Benefactor', + ['model'] = 'schafter4', + ['price'] = 21000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `schafter4`, - ['shop'] = 'luxury', - }, - ['schlagen'] = { --DLC - ['name'] = 'Schlagen GT', - ['brand'] = 'Benefactor', - ['model'] = 'schlagen', - ['price'] = 160000, - ['category'] = 'sports', + ['hash'] = `schafter4`, + ['shop'] = 'luxury', + }, + ['schlagen'] = { --DLC + ['name'] = 'Schlagen GT', + ['brand'] = 'Benefactor', + ['model'] = 'schlagen', + ['price'] = 160000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `schlagen`, - ['shop'] = 'luxury', - }, - ['schwarzer'] = { - ['name'] = 'Schwartzer', - ['brand'] = 'Benefactor', - ['model'] = 'schwarzer', - ['price'] = 47000, - ['category'] = 'sports', + ['hash'] = `schlagen`, + ['shop'] = 'luxury', + }, + ['schwarzer'] = { + ['name'] = 'Schwartzer', + ['brand'] = 'Benefactor', + ['model'] = 'schwarzer', + ['price'] = 47000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `schwarzer`, - ['shop'] = 'luxury', - }, - ['sentinel3'] = { - ['name'] = 'Sentinel Classic', - ['brand'] = 'Übermacht', - ['model'] = 'sentinel3', - ['price'] = 70000, - ['category'] = 'coupes', + ['hash'] = `schwarzer`, + ['shop'] = 'luxury', + }, + ['sentinel3'] = { + ['name'] = 'Sentinel Classic', + ['brand'] = 'Übermacht', + ['model'] = 'sentinel3', + ['price'] = 70000, + ['category'] = 'coupes', ['categoryLabel'] = 'Coupes', - ['hash'] = `sentinel3`, - ['shop'] = 'pdm', - }, - ['seven70'] = { - ['name'] = 'Seven-70', - ['brand'] = 'Dewbauchee', - ['model'] = 'seven70', - ['price'] = 140000, - ['category'] = 'sports', + ['hash'] = `sentinel3`, + ['shop'] = 'pdm', + }, + ['seven70'] = { + ['name'] = 'Seven-70', + ['brand'] = 'Dewbauchee', + ['model'] = 'seven70', + ['price'] = 140000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `seven70`, - ['shop'] = 'luxury', - }, - ['specter'] = { - ['name'] = 'Specter', - ['brand'] = 'Dewbauchee', - ['model'] = 'specter', - ['price'] = 160000, - ['category'] = 'sports', + ['hash'] = `seven70`, + ['shop'] = 'luxury', + }, + ['specter'] = { + ['name'] = 'Specter', + ['brand'] = 'Dewbauchee', + ['model'] = 'specter', + ['price'] = 160000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `specter`, - ['shop'] = 'luxury', - }, - ['streiter'] = { - ['name'] = 'Streiter', - ['brand'] = 'Benefactor', - ['model'] = 'streiter', - ['price'] = 40000, - ['category'] = 'sports', + ['hash'] = `specter`, + ['shop'] = 'luxury', + }, + ['streiter'] = { + ['name'] = 'Streiter', + ['brand'] = 'Benefactor', + ['model'] = 'streiter', + ['price'] = 40000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `streiter`, - ['shop'] = 'luxury', - }, - ['sugoi'] = { - ['name'] = 'Sugoi', - ['brand'] = 'Dinka', - ['model'] = 'sugoi', - ['price'] = 85000, - ['category'] = 'sports', + ['hash'] = `streiter`, + ['shop'] = 'luxury', + }, + ['sugoi'] = { + ['name'] = 'Sugoi', + ['brand'] = 'Dinka', + ['model'] = 'sugoi', + ['price'] = 85000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `sugoi`, - ['shop'] = 'luxury', - }, - ['sultan'] = { - ['name'] = 'Sultan', - ['brand'] = 'Karin', - ['model'] = 'sultan', - ['price'] = 50000, - ['category'] = 'sports', + ['hash'] = `sugoi`, + ['shop'] = 'luxury', + }, + ['sultan'] = { + ['name'] = 'Sultan', + ['brand'] = 'Karin', + ['model'] = 'sultan', + ['price'] = 50000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `sultan`, - ['shop'] = 'luxury', - }, - ['sultan2'] = { - ['name'] = 'Sultan Custom', - ['brand'] = 'Karin', - ['model'] = 'sultan2', - ['price'] = 55000, - ['category'] = 'sports', + ['hash'] = `sultan`, + ['shop'] = 'luxury', + }, + ['sultan2'] = { + ['name'] = 'Sultan Custom', + ['brand'] = 'Karin', + ['model'] = 'sultan2', + ['price'] = 55000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `sultan2`, - ['shop'] = 'luxury', - }, - ['surano'] = { - ['name'] = 'Surano', - ['brand'] = ' Benefactor', - ['model'] = 'surano', - ['price'] = 80000, - ['category'] = 'sports', + ['hash'] = `sultan2`, + ['shop'] = 'luxury', + }, + ['surano'] = { + ['name'] = 'Surano', + ['brand'] = ' Benefactor', + ['model'] = 'surano', + ['price'] = 80000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `surano`, - ['shop'] = 'luxury', - }, - ['tampa2'] = { - ['name'] = 'Drift Tampa', - ['brand'] = 'Declasse', - ['model'] = 'tampa2', - ['price'] = 80000, - ['category'] = 'muscle', + ['hash'] = `surano`, + ['shop'] = 'luxury', + }, + ['tampa2'] = { + ['name'] = 'Drift Tampa', + ['brand'] = 'Declasse', + ['model'] = 'tampa2', + ['price'] = 80000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `tampa2`, - ['shop'] = 'pdm', - }, - ['tropos'] = { - ['name'] = 'Tropos Rallye', - ['brand'] = 'Lampadati', - ['model'] = 'tropos', - ['price'] = 65000, - ['category'] = 'sports', + ['hash'] = `tampa2`, + ['shop'] = 'pdm', + }, + ['tropos'] = { + ['name'] = 'Tropos Rallye', + ['brand'] = 'Lampadati', + ['model'] = 'tropos', + ['price'] = 65000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `tropos`, - ['shop'] = 'luxury', - }, - ['verlierer2'] = { - ['name'] = 'Verlierer', - ['brand'] = 'Bravado', - ['model'] = 'verlierer2', - ['price'] = 90500, - ['category'] = 'sports', + ['hash'] = `tropos`, + ['shop'] = 'luxury', + }, + ['verlierer2'] = { + ['name'] = 'Verlierer', + ['brand'] = 'Bravado', + ['model'] = 'verlierer2', + ['price'] = 90500, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `verlierer2`, - ['shop'] = 'luxury', - }, - ['vstr'] = { - ['name'] = 'V-STR', - ['brand'] = 'Albany', - ['model'] = 'vstr', - ['price'] = 80000, - ['category'] = 'sports', + ['hash'] = `verlierer2`, + ['shop'] = 'luxury', + }, + ['vstr'] = { + ['name'] = 'V-STR', + ['brand'] = 'Albany', + ['model'] = 'vstr', + ['price'] = 80000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `vstr`, - ['shop'] = 'luxury', - }, - ['italirsx'] = { - ['name'] = 'Itali RSX', - ['brand'] = 'Progen', - ['model'] = 'italirsx', - ['price'] = 260000, - ['category'] = 'sports', + ['hash'] = `vstr`, + ['shop'] = 'luxury', + }, + ['italirsx'] = { + ['name'] = 'Itali RSX', + ['brand'] = 'Progen', + ['model'] = 'italirsx', + ['price'] = 260000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `italirsx`, - ['shop'] = 'luxury', - }, - ['zr350'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'ZR350', - ['brand'] = 'Annis', - ['model'] = 'zr350', - ['price'] = 38000, - ['category'] = 'sports', + ['hash'] = `italirsx`, + ['shop'] = 'luxury', + }, + ['zr350'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'ZR350', + ['brand'] = 'Annis', + ['model'] = 'zr350', + ['price'] = 38000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `zr350`, - ['shop'] = 'luxury', - }, - ['calico'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Calico GTF', - ['brand'] = 'Karin', - ['model'] = 'calico', - ['price'] = 39000, - ['category'] = 'sports', + ['hash'] = `zr350`, + ['shop'] = 'luxury', + }, + ['calico'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Calico GTF', + ['brand'] = 'Karin', + ['model'] = 'calico', + ['price'] = 39000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `calico`, - ['shop'] = 'luxury', - }, - ['futo2'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Futo GTX', - ['brand'] = 'Karin', - ['model'] = 'futo2', - ['price'] = 39000, - ['category'] = 'sports', + ['hash'] = `calico`, + ['shop'] = 'luxury', + }, + ['futo2'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Futo GTX', + ['brand'] = 'Karin', + ['model'] = 'futo2', + ['price'] = 39000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `futo2`, - ['shop'] = 'luxury', - }, - ['euros'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Euros', - ['brand'] = 'Annis', - ['model'] = 'euros', - ['price'] = 80000, - ['category'] = 'sports', + ['hash'] = `futo2`, + ['shop'] = 'luxury', + }, + ['euros'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Euros', + ['brand'] = 'Annis', + ['model'] = 'euros', + ['price'] = 80000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `euros`, - ['shop'] = 'luxury', - }, - ['jester4'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Jester RR', - ['brand'] = 'Dinka', - ['model'] = 'jester4', - ['price'] = 240000, - ['category'] = 'sports', + ['hash'] = `euros`, + ['shop'] = 'luxury', + }, + ['jester4'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Jester RR', + ['brand'] = 'Dinka', + ['model'] = 'jester4', + ['price'] = 240000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `jester4`, - ['shop'] = 'luxury', - }, - ['remus'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Remus', - ['brand'] = 'Annis', - ['model'] = 'remus', - ['price'] = 48000, - ['category'] = 'sports', + ['hash'] = `jester4`, + ['shop'] = 'luxury', + }, + ['remus'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Remus', + ['brand'] = 'Annis', + ['model'] = 'remus', + ['price'] = 48000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `remus`, - ['shop'] = 'luxury', - }, - ['comet6'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Comet S2', - ['brand'] = 'Pfister', - ['model'] = 'comet6', - ['price'] = 230000, - ['category'] = 'sports', + ['hash'] = `remus`, + ['shop'] = 'luxury', + }, + ['comet6'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Comet S2', + ['brand'] = 'Pfister', + ['model'] = 'comet6', + ['price'] = 230000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `comet6`, - ['shop'] = 'luxury', - }, - ['growler'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Growler', - ['brand'] = 'Pfister', - ['model'] = 'growler', - ['price'] = 205000, - ['category'] = 'sports', + ['hash'] = `comet6`, + ['shop'] = 'luxury', + }, + ['growler'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Growler', + ['brand'] = 'Pfister', + ['model'] = 'growler', + ['price'] = 205000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `growler`, - ['shop'] = 'luxury', - }, - ['vectre'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Emperor Vectre', - ['brand'] = 'Emperor', - ['model'] = 'vectre', - ['price'] = 80000, - ['category'] = 'sports', + ['hash'] = `growler`, + ['shop'] = 'luxury', + }, + ['vectre'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Emperor Vectre', + ['brand'] = 'Emperor', + ['model'] = 'vectre', + ['price'] = 80000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `vectre`, - ['shop'] = 'luxury', - }, - ['cypher'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Cypher', - ['brand'] = 'Ubermacht', - ['model'] = 'cypher', - ['price'] = 155000, - ['category'] = 'sports', + ['hash'] = `vectre`, + ['shop'] = 'luxury', + }, + ['cypher'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Cypher', + ['brand'] = 'Ubermacht', + ['model'] = 'cypher', + ['price'] = 155000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `cypher`, - ['shop'] = 'luxury', - }, - ['sultan3'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Sultan Classic Custom', - ['brand'] = 'Karin', - ['model'] = 'sultan3', - ['price'] = 56000, - ['category'] = 'sports', + ['hash'] = `cypher`, + ['shop'] = 'luxury', + }, + ['sultan3'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Sultan Classic Custom', + ['brand'] = 'Karin', + ['model'] = 'sultan3', + ['price'] = 56000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `sultan3`, - ['shop'] = 'luxury', - }, - ['rt3000'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'RT3000', - ['brand'] = 'Dinka', - ['model'] = 'rt3000', - ['price'] = 65000, - ['category'] = 'sports', + ['hash'] = `sultan3`, + ['shop'] = 'luxury', + }, + ['rt3000'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'RT3000', + ['brand'] = 'Dinka', + ['model'] = 'rt3000', + ['price'] = 65000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `rt3000`, - ['shop'] = 'luxury', - }, - --- Sports Classic - ['ardent'] = { - ['name'] = 'Ardent', - ['brand'] = 'Ocelot', - ['model'] = 'ardent', - ['price'] = 30000, - ['category'] = 'sportsclassics', + ['hash'] = `rt3000`, + ['shop'] = 'luxury', + }, + --- Sports Classic + ['ardent'] = { + ['name'] = 'Ardent', + ['brand'] = 'Ocelot', + ['model'] = 'ardent', + ['price'] = 30000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `ardent`, - ['shop'] = 'pdm', - }, - ['btype'] = { --meme car that goes pretty fast - ['name'] = 'Roosevelt', - ['brand'] = 'Albany', - ['model'] = 'btype', - ['price'] = 75000, - ['category'] = 'sportsclassics', + ['hash'] = `ardent`, + ['shop'] = 'pdm', + }, + ['btype'] = { --meme car that goes pretty fast + ['name'] = 'Roosevelt', + ['brand'] = 'Albany', + ['model'] = 'btype', + ['price'] = 75000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `btype`, - ['shop'] = 'pdm', - }, - ['btype2'] = { - ['name'] = 'Franken Stange', - ['brand'] = 'Albany', - ['model'] = 'btype2', - ['price'] = 87000, - ['category'] = 'sportsclassics', + ['hash'] = `btype`, + ['shop'] = 'pdm', + }, + ['btype2'] = { + ['name'] = 'Franken Stange', + ['brand'] = 'Albany', + ['model'] = 'btype2', + ['price'] = 87000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `btype2`, - ['shop'] = 'pdm', - }, - ['btype3'] = { - ['name'] = 'Roosevelt Valor', - ['brand'] = 'Albany', - ['model'] = 'btype3', - ['price'] = 63000, - ['category'] = 'sportsclassics', + ['hash'] = `btype2`, + ['shop'] = 'pdm', + }, + ['btype3'] = { + ['name'] = 'Roosevelt Valor', + ['brand'] = 'Albany', + ['model'] = 'btype3', + ['price'] = 63000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `btype3`, - ['shop'] = 'pdm', - }, - ['casco'] = { - ['name'] = 'Casco', - ['brand'] = 'Lampadati', - ['model'] = 'casco', - ['price'] = 100000, - ['category'] = 'sportsclassics', + ['hash'] = `btype3`, + ['shop'] = 'pdm', + }, + ['casco'] = { + ['name'] = 'Casco', + ['brand'] = 'Lampadati', + ['model'] = 'casco', + ['price'] = 100000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `casco`, - ['shop'] = 'pdm', - }, - ['cheetah2'] = { - ['name'] = 'Cheetah Classic', - ['brand'] = 'Grotti', - ['model'] = 'cheetah2', - ['price'] = 195000, - ['category'] = 'sports', + ['hash'] = `casco`, + ['shop'] = 'pdm', + }, + ['cheetah2'] = { + ['name'] = 'Cheetah Classic', + ['brand'] = 'Grotti', + ['model'] = 'cheetah2', + ['price'] = 195000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `cheetah2`, - ['shop'] = 'luxury', - }, - ['deluxo'] = { - ['name'] = 'Deluxo', - ['brand'] = 'Imponte', - ['model'] = 'deluxo', - ['price'] = 55000, - ['category'] = 'sportsclassics', + ['hash'] = `cheetah2`, + ['shop'] = 'luxury', + }, + ['deluxo'] = { + ['name'] = 'Deluxo', + ['brand'] = 'Imponte', + ['model'] = 'deluxo', + ['price'] = 55000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `deluxo`, - ['shop'] = 'pdm', - }, - ['dynasty'] = { --DLC - ['name'] = 'Dynasty', - ['brand'] = 'Weeny', - ['model'] = 'dynasty', - ['price'] = 25000, - ['category'] = 'sportsclassics', + ['hash'] = `deluxo`, + ['shop'] = 'pdm', + }, + ['dynasty'] = { --DLC + ['name'] = 'Dynasty', + ['brand'] = 'Weeny', + ['model'] = 'dynasty', + ['price'] = 25000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `dynasty`, - ['shop'] = 'pdm', - }, - ['fagaloa'] = { - ['name'] = 'Fagaloa', - ['brand'] = 'Vulcar', - ['model'] = 'fagaloa', - ['price'] = 13000, - ['category'] = 'sportsclassics', + ['hash'] = `dynasty`, + ['shop'] = 'pdm', + }, + ['fagaloa'] = { + ['name'] = 'Fagaloa', + ['brand'] = 'Vulcar', + ['model'] = 'fagaloa', + ['price'] = 13000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `fagaloa`, - ['shop'] = 'pdm', - }, - ['feltzer3'] = { --DLC - ['name'] = 'Stirling GT', - ['brand'] = 'Benefactor', - ['model'] = 'feltzer3', - ['price'] = 115000, - ['category'] = 'sportsclassics', + ['hash'] = `fagaloa`, + ['shop'] = 'pdm', + }, + ['feltzer3'] = { --DLC + ['name'] = 'Stirling GT', + ['brand'] = 'Benefactor', + ['model'] = 'feltzer3', + ['price'] = 115000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `feltzer3`, - ['shop'] = 'pdm', - }, - ['gt500'] = { - ['name'] = 'GT500', - ['brand'] = 'Grotti', - ['model'] = 'gt500', - ['price'] = 130000, - ['category'] = 'sportsclassics', + ['hash'] = `feltzer3`, + ['shop'] = 'pdm', + }, + ['gt500'] = { + ['name'] = 'GT500', + ['brand'] = 'Grotti', + ['model'] = 'gt500', + ['price'] = 130000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `gt500`, - ['shop'] = 'pdm', - }, - ['infernus2'] = { - ['name'] = 'Infernus Classic', - ['brand'] = 'Pegassi', - ['model'] = 'infernus2', - ['price'] = 245000, - ['category'] = 'sportsclassics', + ['hash'] = `gt500`, + ['shop'] = 'pdm', + }, + ['infernus2'] = { + ['name'] = 'Infernus Classic', + ['brand'] = 'Pegassi', + ['model'] = 'infernus2', + ['price'] = 245000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `infernus2`, - ['shop'] = 'pdm', - }, - ['jb700'] = { - ['name'] = 'JB 700', - ['brand'] = 'Dewbauchee', - ['model'] = 'jb700', - ['price'] = 240000, - ['category'] = 'sportsclassics', + ['hash'] = `infernus2`, + ['shop'] = 'pdm', + }, + ['jb700'] = { + ['name'] = 'JB 700', + ['brand'] = 'Dewbauchee', + ['model'] = 'jb700', + ['price'] = 240000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `jb700`, - ['shop'] = 'pdm', - }, - ['jb7002'] = { - ['name'] = 'JB 700W', - ['brand'] = 'Dewbauchee', - ['model'] = 'jb7002', - ['price'] = 40000, - ['category'] = 'sportsclassics', + ['hash'] = `jb700`, + ['shop'] = 'pdm', + }, + ['jb7002'] = { + ['name'] = 'JB 700W', + ['brand'] = 'Dewbauchee', + ['model'] = 'jb7002', + ['price'] = 40000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `jb7002`, - ['shop'] = 'pdm', - }, - ['mamba'] = { - ['name'] = 'Mamba', - ['brand'] = 'Declasse', - ['model'] = 'mamba', - ['price'] = 140000, - ['category'] = 'sportsclassics', + ['hash'] = `jb7002`, + ['shop'] = 'pdm', + }, + ['mamba'] = { + ['name'] = 'Mamba', + ['brand'] = 'Declasse', + ['model'] = 'mamba', + ['price'] = 140000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `mamba`, - ['shop'] = 'pdm', - }, - ['manana'] = { - ['name'] = 'Manana', - ['brand'] = 'Albany', - ['model'] = 'manana', - ['price'] = 12800, - ['category'] = 'muscle', + ['hash'] = `mamba`, + ['shop'] = 'pdm', + }, + ['manana'] = { + ['name'] = 'Manana', + ['brand'] = 'Albany', + ['model'] = 'manana', + ['price'] = 12800, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `manana`, - ['shop'] = 'pdm', - }, - ['manana2'] = { - ['name'] = 'Manana Custom', - ['brand'] = 'Albany', - ['model'] = 'manana2', - ['price'] = 24000, - ['category'] = 'muscle', + ['hash'] = `manana`, + ['shop'] = 'pdm', + }, + ['manana2'] = { + ['name'] = 'Manana Custom', + ['brand'] = 'Albany', + ['model'] = 'manana2', + ['price'] = 24000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `manana2`, - ['shop'] = 'pdm', - }, - ['michelli'] = { - ['name'] = 'Michelli GT', - ['brand'] = 'Lampadati', - ['model'] = 'michelli', - ['price'] = 30000, - ['category'] = 'sportsclassics', + ['hash'] = `manana2`, + ['shop'] = 'pdm', + }, + ['michelli'] = { + ['name'] = 'Michelli GT', + ['brand'] = 'Lampadati', + ['model'] = 'michelli', + ['price'] = 30000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `michelli`, - ['shop'] = 'pdm', - }, - ['monroe'] = { - ['name'] = 'Monroe', - ['brand'] = 'Pegassi', - ['model'] = 'monroe', - ['price'] = 115000, - ['category'] = 'sportsclassics', + ['hash'] = `michelli`, + ['shop'] = 'pdm', + }, + ['monroe'] = { + ['name'] = 'Monroe', + ['brand'] = 'Pegassi', + ['model'] = 'monroe', + ['price'] = 115000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `monroe`, - ['shop'] = 'pdm', - }, - ['nebula'] = { --DLC - ['name'] = 'Nebula', - ['brand'] = 'Vulcar', - ['model'] = 'nebula', - ['price'] = 22000, - ['category'] = 'sportsclassics', + ['hash'] = `monroe`, + ['shop'] = 'pdm', + }, + ['nebula'] = { --DLC + ['name'] = 'Nebula', + ['brand'] = 'Vulcar', + ['model'] = 'nebula', + ['price'] = 22000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `nebula`, - ['shop'] = 'pdm', - }, - ['peyote'] = { - ['name'] = 'Peyote', - ['brand'] = 'Vapid', - ['model'] = 'peyote', - ['price'] = 23500, - ['category'] = 'sportsclassics', + ['hash'] = `nebula`, + ['shop'] = 'pdm', + }, + ['peyote'] = { + ['name'] = 'Peyote', + ['brand'] = 'Vapid', + ['model'] = 'peyote', + ['price'] = 23500, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `peyote`, - ['shop'] = 'pdm', - }, - ['peyote3'] = { - ['name'] = 'Peyote Custom', - ['brand'] = 'Vapid', - ['model'] = 'peyote3', - ['price'] = 48000, - ['category'] = 'sportsclassics', + ['hash'] = `peyote`, + ['shop'] = 'pdm', + }, + ['peyote3'] = { + ['name'] = 'Peyote Custom', + ['brand'] = 'Vapid', + ['model'] = 'peyote3', + ['price'] = 48000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `peyote3`, - ['shop'] = 'pdm', - }, - ['pigalle'] = { - ['name'] = 'Pigalle', - ['brand'] = 'Lampadati', - ['model'] = 'pigalle', - ['price'] = 92000, - ['category'] = 'sportsclassics', + ['hash'] = `peyote3`, + ['shop'] = 'pdm', + }, + ['pigalle'] = { + ['name'] = 'Pigalle', + ['brand'] = 'Lampadati', + ['model'] = 'pigalle', + ['price'] = 92000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `pigalle`, - ['shop'] = 'pdm', - }, - ['rapidgt3'] = { - ['name'] = 'Rapid GT', - ['brand'] = 'Dewbauchee', - ['model'] = 'rapidgt3', - ['price'] = 90000, - ['category'] = 'sportsclassics', + ['hash'] = `pigalle`, + ['shop'] = 'pdm', + }, + ['rapidgt3'] = { + ['name'] = 'Rapid GT', + ['brand'] = 'Dewbauchee', + ['model'] = 'rapidgt3', + ['price'] = 90000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `rapidgt3`, - ['shop'] = 'pdm', - }, - ['retinue'] = { - ['name'] = 'Retinue', - ['brand'] = 'Vapid', - ['model'] = 'retinue', - ['price'] = 32000, - ['category'] = 'sportsclassics', + ['hash'] = `rapidgt3`, + ['shop'] = 'pdm', + }, + ['retinue'] = { + ['name'] = 'Retinue', + ['brand'] = 'Vapid', + ['model'] = 'retinue', + ['price'] = 32000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `retinue`, - ['shop'] = 'pdm', - }, - ['retinue2'] = { - ['name'] = 'Retinue MKII', - ['brand'] = 'Vapid', - ['model'] = 'retinue2', - ['price'] = 38000, - ['category'] = 'sportsclassics', + ['hash'] = `retinue`, + ['shop'] = 'pdm', + }, + ['retinue2'] = { + ['name'] = 'Retinue MKII', + ['brand'] = 'Vapid', + ['model'] = 'retinue2', + ['price'] = 38000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `retinue2`, - ['shop'] = 'pdm', - }, - ['savestra'] = { - ['name'] = 'Savestra', - ['brand'] = 'Annis', - ['model'] = 'savestra', - ['price'] = 67000, - ['category'] = 'sportsclassics', + ['hash'] = `retinue2`, + ['shop'] = 'pdm', + }, + ['savestra'] = { + ['name'] = 'Savestra', + ['brand'] = 'Annis', + ['model'] = 'savestra', + ['price'] = 67000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `savestra`, - ['shop'] = 'pdm', - }, - ['stinger'] = { - ['name'] = 'Stinger', - ['brand'] = 'Grotti', - ['model'] = 'stinger', - ['price'] = 39500, - ['category'] = 'sportsclassics', + ['hash'] = `savestra`, + ['shop'] = 'pdm', + }, + ['stinger'] = { + ['name'] = 'Stinger', + ['brand'] = 'Grotti', + ['model'] = 'stinger', + ['price'] = 39500, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `stinger`, - ['shop'] = 'pdm', - }, - ['stingergt'] = { - ['name'] = 'Stinger GT', - ['brand'] = 'Grotti', - ['model'] = 'stingergt', - ['price'] = 70000, - ['category'] = 'sportsclassics', + ['hash'] = `stinger`, + ['shop'] = 'pdm', + }, + ['stingergt'] = { + ['name'] = 'Stinger GT', + ['brand'] = 'Grotti', + ['model'] = 'stingergt', + ['price'] = 70000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `stingergt`, - ['shop'] = 'pdm', - }, - ['stromberg'] = { - ['name'] = 'Stromberg', - ['brand'] = 'Ocelot', - ['model'] = 'stromberg', - ['price'] = 80000, - ['category'] = 'sportsclassics', + ['hash'] = `stingergt`, + ['shop'] = 'pdm', + }, + ['stromberg'] = { + ['name'] = 'Stromberg', + ['brand'] = 'Ocelot', + ['model'] = 'stromberg', + ['price'] = 80000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `stromberg`, - ['shop'] = 'pdm', - }, - ['swinger'] = { --DLC - ['name'] = 'Swinger', - ['brand'] = 'Ocelot', - ['model'] = 'swinger', - ['price'] = 221000, - ['category'] = 'sportsclassics', + ['hash'] = `stromberg`, + ['shop'] = 'pdm', + }, + ['swinger'] = { --DLC + ['name'] = 'Swinger', + ['brand'] = 'Ocelot', + ['model'] = 'swinger', + ['price'] = 221000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `swinger`, - ['shop'] = 'pdm', - }, - ['torero'] = { - ['name'] = 'Torero', - ['brand'] = 'Pegassi', - ['model'] = 'torero', - ['price'] = 84000, - ['category'] = 'sportsclassics', + ['hash'] = `swinger`, + ['shop'] = 'pdm', + }, + ['torero'] = { + ['name'] = 'Torero', + ['brand'] = 'Pegassi', + ['model'] = 'torero', + ['price'] = 84000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `torero`, - ['shop'] = 'pdm', - }, - ['tornado'] = { - ['name'] = 'Tornado', - ['brand'] = 'Declasse', - ['model'] = 'tornado', - ['price'] = 21000, - ['category'] = 'sportsclassics', + ['hash'] = `torero`, + ['shop'] = 'pdm', + }, + ['tornado'] = { + ['name'] = 'Tornado', + ['brand'] = 'Declasse', + ['model'] = 'tornado', + ['price'] = 21000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `tornado`, - ['shop'] = 'pdm', - }, - ['tornado2'] = { - ['name'] = 'Tornado Gang', - ['brand'] = 'Declasse', - ['model'] = 'tornado2', - ['price'] = 22000, - ['category'] = 'sportsclassics', + ['hash'] = `tornado`, + ['shop'] = 'pdm', + }, + ['tornado2'] = { + ['name'] = 'Tornado Gang', + ['brand'] = 'Declasse', + ['model'] = 'tornado2', + ['price'] = 22000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `tornado2`, - ['shop'] = 'pdm', - }, - ['tornado5'] = { - ['name'] = 'Tornado Custom', - ['brand'] = 'Declasse', - ['model'] = 'tornado5', - ['price'] = 22000, - ['category'] = 'sportsclassics', + ['hash'] = `tornado2`, + ['shop'] = 'pdm', + }, + ['tornado5'] = { + ['name'] = 'Tornado Custom', + ['brand'] = 'Declasse', + ['model'] = 'tornado5', + ['price'] = 22000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `tornado5`, - ['shop'] = 'pdm', - }, - ['turismo2'] = { - ['name'] = 'Turismo Classic', - ['brand'] = 'Grotti', - ['model'] = 'turismo2', - ['price'] = 170000, - ['category'] = 'sportsclassics', + ['hash'] = `tornado5`, + ['shop'] = 'pdm', + }, + ['turismo2'] = { + ['name'] = 'Turismo Classic', + ['brand'] = 'Grotti', + ['model'] = 'turismo2', + ['price'] = 170000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `turismo2`, - ['shop'] = 'pdm', - }, - ['viseris'] = { - ['name'] = 'Viseris', - ['brand'] = 'Lampadati', - ['model'] = 'viseris', - ['price'] = 210000, - ['category'] = 'sportsclassics', + ['hash'] = `turismo2`, + ['shop'] = 'pdm', + }, + ['viseris'] = { + ['name'] = 'Viseris', + ['brand'] = 'Lampadati', + ['model'] = 'viseris', + ['price'] = 210000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `viseris`, - ['shop'] = 'pdm', - }, - ['z190'] = { - ['name'] = '190Z', - ['brand'] = 'Karin', - ['model'] = 'z190', - ['price'] = 78000, - ['category'] = 'sportsclassics', + ['hash'] = `viseris`, + ['shop'] = 'pdm', + }, + ['z190'] = { + ['name'] = '190Z', + ['brand'] = 'Karin', + ['model'] = 'z190', + ['price'] = 78000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `z190`, - ['shop'] = 'pdm', - }, - ['ztype'] = { - ['name'] = 'Z-Type', - ['brand'] = 'Truffade', - ['model'] = 'ztype', - ['price'] = 270000, - ['category'] = 'sportsclassics', + ['hash'] = `z190`, + ['shop'] = 'pdm', + }, + ['ztype'] = { + ['name'] = 'Z-Type', + ['brand'] = 'Truffade', + ['model'] = 'ztype', + ['price'] = 270000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `ztype`, - ['shop'] = 'pdm', - }, - ['zion3'] = { --DLC - ['name'] = 'Zion Classic', - ['brand'] = 'Übermacht', - ['model'] = 'zion3', - ['price'] = 45000, - ['category'] = 'sportsclassics', + ['hash'] = `ztype`, + ['shop'] = 'pdm', + }, + ['zion3'] = { --DLC + ['name'] = 'Zion Classic', + ['brand'] = 'Übermacht', + ['model'] = 'zion3', + ['price'] = 45000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `zion3`, - ['shop'] = 'pdm', - }, - ['cheburek'] = { - ['name'] = 'Cheburek', - ['brand'] = 'Rune', - ['model'] = 'cheburek', - ['price'] = 7000, - ['category'] = 'sportsclassics', + ['hash'] = `zion3`, + ['shop'] = 'pdm', + }, + ['cheburek'] = { + ['name'] = 'Cheburek', + ['brand'] = 'Rune', + ['model'] = 'cheburek', + ['price'] = 7000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `cheburek`, - ['shop'] = 'pdm', - }, - ['toreador'] = { - ['name'] = 'Toreador', - ['brand'] = 'Pegassi', - ['model'] = 'toreador', - ['price'] = 50000, - ['category'] = 'sportsclassics', + ['hash'] = `cheburek`, + ['shop'] = 'pdm', + }, + ['toreador'] = { + ['name'] = 'Toreador', + ['brand'] = 'Pegassi', + ['model'] = 'toreador', + ['price'] = 50000, + ['category'] = 'sportsclassics', ['categoryLabel'] = 'Sports Classics', - ['hash'] = `toreador`, - ['shop'] = 'pdm', - }, - --- Super - ['adder'] = { - ['name'] = 'Adder', - ['brand'] = 'Truffade', - ['model'] = 'adder', - ['price'] = 280000, - ['category'] = 'super', + ['hash'] = `toreador`, + ['shop'] = 'pdm', + }, + --- Super + ['adder'] = { + ['name'] = 'Adder', + ['brand'] = 'Truffade', + ['model'] = 'adder', + ['price'] = 280000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `adder`, - ['shop'] = 'luxury', - }, - ['autarch'] = { - ['name'] = 'Autarch', - ['brand'] = 'Överflöd', - ['model'] = 'autarch', - ['price'] = 224000, - ['category'] = 'super', + ['hash'] = `adder`, + ['shop'] = 'luxury', + }, + ['autarch'] = { + ['name'] = 'Autarch', + ['brand'] = 'Överflöd', + ['model'] = 'autarch', + ['price'] = 224000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `autarch`, - ['shop'] = 'luxury', - }, - ['banshee2'] = { - ['name'] = 'Banshee 900R', - ['brand'] = 'Bravado', - ['model'] = 'banshee2', - ['price'] = 120000, - ['category'] = 'super', + ['hash'] = `autarch`, + ['shop'] = 'luxury', + }, + ['banshee2'] = { + ['name'] = 'Banshee 900R', + ['brand'] = 'Bravado', + ['model'] = 'banshee2', + ['price'] = 120000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `banshee2`, - ['shop'] = 'luxury', - }, - ['bullet'] = { - ['name'] = 'Bullet', - ['brand'] = 'Vapid', - ['model'] = 'bullet', - ['price'] = 120000, - ['category'] = 'super', + ['hash'] = `banshee2`, + ['shop'] = 'luxury', + }, + ['bullet'] = { + ['name'] = 'Bullet', + ['brand'] = 'Vapid', + ['model'] = 'bullet', + ['price'] = 120000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `bullet`, - ['shop'] = 'luxury', - }, - ['cheetah'] = { - ['name'] = 'Cheetah', - ['brand'] = 'Grotti', - ['model'] = 'cheetah', - ['price'] = 214000, - ['category'] = 'super', + ['hash'] = `bullet`, + ['shop'] = 'luxury', + }, + ['cheetah'] = { + ['name'] = 'Cheetah', + ['brand'] = 'Grotti', + ['model'] = 'cheetah', + ['price'] = 214000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `cheetah`, - ['shop'] = 'luxury', - }, - ['cyclone'] = { --might be too overpowered - ['name'] = 'Cyclone', - ['brand'] = 'Coil', - ['model'] = 'cyclone', - ['price'] = 300000, - ['category'] = 'super', + ['hash'] = `cheetah`, + ['shop'] = 'luxury', + }, + ['cyclone'] = { --might be too overpowered + ['name'] = 'Cyclone', + ['brand'] = 'Coil', + ['model'] = 'cyclone', + ['price'] = 300000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `cyclone`, - ['shop'] = 'luxury', - }, - ['entity2'] = { - ['name'] = 'Entity XXR', - ['brand'] = 'Överflöd', - ['model'] = 'entity2', - ['price'] = 164000, - ['category'] = 'super', + ['hash'] = `cyclone`, + ['shop'] = 'luxury', + }, + ['entity2'] = { + ['name'] = 'Entity XXR', + ['brand'] = 'Överflöd', + ['model'] = 'entity2', + ['price'] = 164000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `entity2`, - ['shop'] = 'luxury', - }, - ['entityxf'] = { - ['name'] = 'Entity XF', - ['brand'] = 'Överflöd', - ['model'] = 'entityxf', - ['price'] = 180000, - ['category'] = 'super', + ['hash'] = `entity2`, + ['shop'] = 'luxury', + }, + ['entityxf'] = { + ['name'] = 'Entity XF', + ['brand'] = 'Överflöd', + ['model'] = 'entityxf', + ['price'] = 180000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `entityxf`, - ['shop'] = 'luxury', - }, - ['emerus'] = { --DLC - ['name'] = 'Emerus', - ['brand'] = 'Progen', - ['model'] = 'emerus', - ['price'] = 220000, - ['category'] = 'super', + ['hash'] = `entityxf`, + ['shop'] = 'luxury', + }, + ['emerus'] = { --DLC + ['name'] = 'Emerus', + ['brand'] = 'Progen', + ['model'] = 'emerus', + ['price'] = 220000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `emerus`, - ['shop'] = 'luxury', - }, - ['fmj'] = { - ['name'] = 'FMJ', - ['brand'] = 'Vapid', - ['model'] = 'fmj', - ['price'] = 125000, - ['category'] = 'super', + ['hash'] = `emerus`, + ['shop'] = 'luxury', + }, + ['fmj'] = { + ['name'] = 'FMJ', + ['brand'] = 'Vapid', + ['model'] = 'fmj', + ['price'] = 125000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `fmj`, - ['shop'] = 'luxury', - }, - ['furia'] = { - ['name'] = 'Furia', - ['brand'] = 'Grotti', - ['model'] = 'furia', - ['price'] = 230000, - ['category'] = 'super', + ['hash'] = `fmj`, + ['shop'] = 'luxury', + }, + ['furia'] = { + ['name'] = 'Furia', + ['brand'] = 'Grotti', + ['model'] = 'furia', + ['price'] = 230000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `furia`, - ['shop'] = 'luxury', - }, - ['gp1'] = { - ['name'] = 'GP1', - ['brand'] = 'Progen', - ['model'] = 'gp1', - ['price'] = 110000, - ['category'] = 'super', + ['hash'] = `furia`, + ['shop'] = 'luxury', + }, + ['gp1'] = { + ['name'] = 'GP1', + ['brand'] = 'Progen', + ['model'] = 'gp1', + ['price'] = 110000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `gp1`, - ['shop'] = 'luxury', - }, - ['infernus'] = { - ['name'] = 'Infernus', - ['brand'] = 'Pegassi', - ['model'] = 'infernus', - ['price'] = 235000, - ['category'] = 'super', + ['hash'] = `gp1`, + ['shop'] = 'luxury', + }, + ['infernus'] = { + ['name'] = 'Infernus', + ['brand'] = 'Pegassi', + ['model'] = 'infernus', + ['price'] = 235000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `infernus`, - ['shop'] = 'luxury', - }, - ['italigtb'] = { - ['name'] = 'Itali GTB', - ['brand'] = 'Progen', - ['model'] = 'italigtb', - ['price'] = 170000, - ['category'] = 'super', + ['hash'] = `infernus`, + ['shop'] = 'luxury', + }, + ['italigtb'] = { + ['name'] = 'Itali GTB', + ['brand'] = 'Progen', + ['model'] = 'italigtb', + ['price'] = 170000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `italigtb`, - ['shop'] = 'luxury', - }, - ['italigtb2'] = { - ['name'] = 'Itali GTB', - ['brand'] = 'Progen', - ['model'] = 'italigtb2', - ['price'] = 250000, - ['category'] = 'super', + ['hash'] = `italigtb`, + ['shop'] = 'luxury', + }, + ['italigtb2'] = { + ['name'] = 'Itali GTB', + ['brand'] = 'Progen', + ['model'] = 'italigtb2', + ['price'] = 250000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `italigtb2`, - ['shop'] = 'luxury', - }, - ['krieger'] = { --DLC - ['name'] = 'Krieger', - ['brand'] = 'Benefactor', - ['model'] = 'krieger', - ['price'] = 222000, - ['category'] = 'super', + ['hash'] = `italigtb2`, + ['shop'] = 'luxury', + }, + ['krieger'] = { --DLC + ['name'] = 'Krieger', + ['brand'] = 'Benefactor', + ['model'] = 'krieger', + ['price'] = 222000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `krieger`, - ['shop'] = 'luxury', - }, - ['le7b'] = { - ['name'] = 'RE-7B', - ['brand'] = 'Annis', - ['model'] = 'le7b', - ['price'] = 260000, - ['category'] = 'super', + ['hash'] = `krieger`, + ['shop'] = 'luxury', + }, + ['le7b'] = { + ['name'] = 'RE-7B', + ['brand'] = 'Annis', + ['model'] = 'le7b', + ['price'] = 260000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `le7b`, - ['shop'] = 'luxury', - }, - ['nero'] = { - ['name'] = 'Nero', - ['brand'] = 'Truffade', - ['model'] = 'nero', - ['price'] = 200000, - ['category'] = 'super', + ['hash'] = `le7b`, + ['shop'] = 'luxury', + }, + ['nero'] = { + ['name'] = 'Nero', + ['brand'] = 'Truffade', + ['model'] = 'nero', + ['price'] = 200000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `nero`, - ['shop'] = 'luxury', - }, - ['nero2'] = { - ['name'] = 'Nero Custom', - ['brand'] = 'Truffade', - ['model'] = 'nero2', - ['price'] = 260000, - ['category'] = 'super', + ['hash'] = `nero`, + ['shop'] = 'luxury', + }, + ['nero2'] = { + ['name'] = 'Nero Custom', + ['brand'] = 'Truffade', + ['model'] = 'nero2', + ['price'] = 260000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `nero2`, - ['shop'] = 'luxury', - }, - ['osiris'] = { - ['name'] = 'Osiris', - ['brand'] = 'Pegassi', - ['model'] = 'osiris', - ['price'] = 220000, - ['category'] = 'super', + ['hash'] = `nero2`, + ['shop'] = 'luxury', + }, + ['osiris'] = { + ['name'] = 'Osiris', + ['brand'] = 'Pegassi', + ['model'] = 'osiris', + ['price'] = 220000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `osiris`, - ['shop'] = 'luxury', - }, - ['penetrator'] = { - ['name'] = 'Penetrator', - ['brand'] = 'Ocelot', - ['model'] = 'penetrator', - ['price'] = 130000, - ['category'] = 'super', + ['hash'] = `osiris`, + ['shop'] = 'luxury', + }, + ['penetrator'] = { + ['name'] = 'Penetrator', + ['brand'] = 'Ocelot', + ['model'] = 'penetrator', + ['price'] = 130000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `penetrator`, - ['shop'] = 'luxury', - }, - ['pfister811'] = { - ['name'] = '811', - ['brand'] = 'Pfister', - ['model'] = 'pfister811', - ['price'] = 220000, - ['category'] = 'super', + ['hash'] = `penetrator`, + ['shop'] = 'luxury', + }, + ['pfister811'] = { + ['name'] = '811', + ['brand'] = 'Pfister', + ['model'] = 'pfister811', + ['price'] = 220000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `pfister811`, - ['shop'] = 'luxury', - }, - ['prototipo'] = { - ['name'] = 'X80 Proto', - ['brand'] = 'Grotti', - ['model'] = 'prototipo', - ['price'] = 235000, - ['category'] = 'super', + ['hash'] = `pfister811`, + ['shop'] = 'luxury', + }, + ['prototipo'] = { + ['name'] = 'X80 Proto', + ['brand'] = 'Grotti', + ['model'] = 'prototipo', + ['price'] = 235000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `prototipo`, - ['shop'] = 'luxury', - }, - ['reaper'] = { - ['name'] = 'Reaper', - ['brand'] = 'Pegassi', - ['model'] = 'reaper', - ['price'] = 100000, - ['category'] = 'super', + ['hash'] = `prototipo`, + ['shop'] = 'luxury', + }, + ['reaper'] = { + ['name'] = 'Reaper', + ['brand'] = 'Pegassi', + ['model'] = 'reaper', + ['price'] = 100000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `reaper`, - ['shop'] = 'luxury', - }, - ['s80'] = { --DLC - ['name'] = 'S80RR', - ['brand'] = 'Annis', - ['model'] = 's80', - ['price'] = 205000, - ['category'] = 'super', + ['hash'] = `reaper`, + ['shop'] = 'luxury', + }, + ['s80'] = { --DLC + ['name'] = 'S80RR', + ['brand'] = 'Annis', + ['model'] = 's80', + ['price'] = 205000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `s80`, - ['shop'] = 'luxury', - }, - ['sc1'] = { - ['name'] = 'SC1', - ['brand'] = 'Übermacht', - ['model'] = 'sc1', - ['price'] = 90000, - ['category'] = 'super', + ['hash'] = `s80`, + ['shop'] = 'luxury', + }, + ['sc1'] = { + ['name'] = 'SC1', + ['brand'] = 'Übermacht', + ['model'] = 'sc1', + ['price'] = 90000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `sc1`, - ['shop'] = 'luxury', - }, - ['sheava'] = { --DLC - ['name'] = 'ETR1', - ['brand'] = 'Emperor', - ['model'] = 'sheava', - ['price'] = 220000, - ['category'] = 'super', + ['hash'] = `sc1`, + ['shop'] = 'luxury', + }, + ['sheava'] = { --DLC + ['name'] = 'ETR1', + ['brand'] = 'Emperor', + ['model'] = 'sheava', + ['price'] = 220000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `sheava`, - ['shop'] = 'luxury', - }, - ['sultanrs'] = { - ['name'] = 'Sultan RS', - ['brand'] = 'Karin', - ['model'] = 'sultanrs', - ['price'] = 76500, - ['category'] = 'sports', + ['hash'] = `sheava`, + ['shop'] = 'luxury', + }, + ['sultanrs'] = { + ['name'] = 'Sultan RS', + ['brand'] = 'Karin', + ['model'] = 'sultanrs', + ['price'] = 76500, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `sultanrs`, - ['shop'] = 'luxury', - }, - ['t20'] = { - ['name'] = 'T20', - ['brand'] = 'Progen', - ['model'] = 't20', - ['price'] = 1650000, - ['category'] = 'super', + ['hash'] = `sultanrs`, + ['shop'] = 'luxury', + }, + ['t20'] = { + ['name'] = 'T20', + ['brand'] = 'Progen', + ['model'] = 't20', + ['price'] = 1650000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `t20`, - ['shop'] = 'luxury', - }, - ['taipan'] = { - ['name'] = 'Taipan', - ['brand'] = 'Cheval', - ['model'] = 'taipan', - ['price'] = 1850000, - ['category'] = 'super', + ['hash'] = `t20`, + ['shop'] = 'luxury', + }, + ['taipan'] = { + ['name'] = 'Taipan', + ['brand'] = 'Cheval', + ['model'] = 'taipan', + ['price'] = 1850000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `taipan`, - ['shop'] = 'luxury', - }, - ['tempesta'] = { - ['name'] = 'Tempesta', - ['brand'] = 'Pegassi', - ['model'] = 'tempesta', - ['price'] = 120000, - ['category'] = 'super', + ['hash'] = `taipan`, + ['shop'] = 'luxury', + }, + ['tempesta'] = { + ['name'] = 'Tempesta', + ['brand'] = 'Pegassi', + ['model'] = 'tempesta', + ['price'] = 120000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `tempesta`, - ['shop'] = 'luxury', - }, - ['tezeract'] = { - ['name'] = 'Tezeract', - ['brand'] = 'Pegassi', - ['model'] = 'tezeract', - ['price'] = 220000, - ['category'] = 'super', + ['hash'] = `tempesta`, + ['shop'] = 'luxury', + }, + ['tezeract'] = { + ['name'] = 'Tezeract', + ['brand'] = 'Pegassi', + ['model'] = 'tezeract', + ['price'] = 220000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `tezeract`, - ['shop'] = 'luxury', - }, - ['thrax'] = { --DLC - ['name'] = 'Thrax', - ['brand'] = 'Truffade', - ['model'] = 'thrax', - ['price'] = 180000, - ['category'] = 'super', + ['hash'] = `tezeract`, + ['shop'] = 'luxury', + }, + ['thrax'] = { --DLC + ['name'] = 'Thrax', + ['brand'] = 'Truffade', + ['model'] = 'thrax', + ['price'] = 180000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `thrax`, - ['shop'] = 'luxury', - }, - ['tigon'] = { - ['name'] = 'Tigon', - ['brand'] = 'Lampadati', - ['model'] = 'tigon', - ['price'] = 240000, - ['category'] = 'super', + ['hash'] = `thrax`, + ['shop'] = 'luxury', + }, + ['tigon'] = { + ['name'] = 'Tigon', + ['brand'] = 'Lampadati', + ['model'] = 'tigon', + ['price'] = 240000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `tigon`, - ['shop'] = 'luxury', - }, - ['turismor'] = { - ['name'] = 'Turismo R', - ['brand'] = 'Grotti', - ['model'] = 'turismor', - ['price'] = 140000, - ['category'] = 'super', + ['hash'] = `tigon`, + ['shop'] = 'luxury', + }, + ['turismor'] = { + ['name'] = 'Turismo R', + ['brand'] = 'Grotti', + ['model'] = 'turismor', + ['price'] = 140000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `turismor`, - ['shop'] = 'luxury', - }, - ['tyrant'] = { - ['name'] = 'Tyrant', - ['brand'] = ' Överflöd', - ['model'] = 'tyrant', - ['price'] = 2100000, - ['category'] = 'super', + ['hash'] = `turismor`, + ['shop'] = 'luxury', + }, + ['tyrant'] = { + ['name'] = 'Tyrant', + ['brand'] = ' Överflöd', + ['model'] = 'tyrant', + ['price'] = 2100000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `tyrant`, - ['shop'] = 'luxury', - }, - ['tyrus'] = { - ['name'] = 'Tyrus', - ['brand'] = 'Progen', - ['model'] = 'tyrus', - ['price'] = 230000, - ['category'] = 'super', + ['hash'] = `tyrant`, + ['shop'] = 'luxury', + }, + ['tyrus'] = { + ['name'] = 'Tyrus', + ['brand'] = 'Progen', + ['model'] = 'tyrus', + ['price'] = 230000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `tyrus`, - ['shop'] = 'luxury', - }, - ['vacca'] = { - ['name'] = 'Vacca', - ['brand'] = 'Pegassi', - ['model'] = 'vacca', - ['price'] = 105000, - ['category'] = 'super', + ['hash'] = `tyrus`, + ['shop'] = 'luxury', + }, + ['vacca'] = { + ['name'] = 'Vacca', + ['brand'] = 'Pegassi', + ['model'] = 'vacca', + ['price'] = 105000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `vacca`, - ['shop'] = 'luxury', - }, - ['vagner'] = { - ['name'] = 'Vagner', - ['brand'] = 'Dewbauchee', - ['model'] = 'vagner', - ['price'] = 1660000, - ['category'] = 'super', + ['hash'] = `vacca`, + ['shop'] = 'luxury', + }, + ['vagner'] = { + ['name'] = 'Vagner', + ['brand'] = 'Dewbauchee', + ['model'] = 'vagner', + ['price'] = 1660000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `vagner`, - ['shop'] = 'luxury', - }, - ['visione'] = { - ['name'] = 'Visione', - ['brand'] = 'Grotti', - ['model'] = 'visione', - ['price'] = 750000, - ['category'] = 'sports', + ['hash'] = `vagner`, + ['shop'] = 'luxury', + }, + ['visione'] = { + ['name'] = 'Visione', + ['brand'] = 'Grotti', + ['model'] = 'visione', + ['price'] = 750000, + ['category'] = 'sports', ['categoryLabel'] = 'Sports', - ['hash'] = `visione`, - ['shop'] = 'luxury', - }, - ['voltic'] = { - ['name'] = 'Voltic', - ['brand'] = 'Coil', - ['model'] = 'voltic', - ['price'] = 120000, - ['category'] = 'super', + ['hash'] = `visione`, + ['shop'] = 'luxury', + }, + ['voltic'] = { + ['name'] = 'Voltic', + ['brand'] = 'Coil', + ['model'] = 'voltic', + ['price'] = 120000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `voltic`, - ['shop'] = 'luxury', - }, - ['voltic2'] = { - ['name'] = 'Rocket Voltic', - ['brand'] = 'Coil', - ['model'] = 'voltic2', - ['price'] = 9830400, - ['category'] = 'super', + ['hash'] = `voltic`, + ['shop'] = 'luxury', + }, + ['voltic2'] = { + ['name'] = 'Rocket Voltic', + ['brand'] = 'Coil', + ['model'] = 'voltic2', + ['price'] = 9830400, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `voltic2`, - ['shop'] = 'luxury', - }, - ['xa21'] = { - ['name'] = 'XA-21', - ['brand'] = 'Ocelot', - ['model'] = 'xa21', - ['price'] = 180000, - ['category'] = 'super', + ['hash'] = `voltic2`, + ['shop'] = 'luxury', + }, + ['xa21'] = { + ['name'] = 'XA-21', + ['brand'] = 'Ocelot', + ['model'] = 'xa21', + ['price'] = 180000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `xa21`, - ['shop'] = 'luxury', - }, - ['zentorno'] = { - ['name'] = 'Zentorno', - ['brand'] = 'Pegassi', - ['model'] = 'zentorno', - ['price'] = 340000, - ['category'] = 'super', + ['hash'] = `xa21`, + ['shop'] = 'luxury', + }, + ['zentorno'] = { + ['name'] = 'Zentorno', + ['brand'] = 'Pegassi', + ['model'] = 'zentorno', + ['price'] = 340000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `zentorno`, - ['shop'] = 'luxury', - }, - ['zorrusso'] = { --DLC - ['name'] = 'Zorrusso', - ['brand'] = 'Pegassi', - ['model'] = 'zorrusso', - ['price'] = 277000, - ['category'] = 'super', + ['hash'] = `zentorno`, + ['shop'] = 'luxury', + }, + ['zorrusso'] = { --DLC + ['name'] = 'Zorrusso', + ['brand'] = 'Pegassi', + ['model'] = 'zorrusso', + ['price'] = 277000, + ['category'] = 'super', ['categoryLabel'] = 'Super', - ['hash'] = `zorrusso`, - ['shop'] = 'luxury', - }, - -- Vans - ['bison'] = { - ['name'] = 'Bison', - ['brand'] = 'Bravado', - ['model'] = 'bison', - ['price'] = 18000, - ['category'] = 'vans', + ['hash'] = `zorrusso`, + ['shop'] = 'luxury', + }, + -- Vans + ['bison'] = { + ['name'] = 'Bison', + ['brand'] = 'Bravado', + ['model'] = 'bison', + ['price'] = 18000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `bison`, - ['shop'] = 'pdm', - }, - ['bobcatxl'] = { - ['name'] = 'Bobcat XL Open', - ['brand'] = 'Vapid', - ['model'] = 'bobcatxl', - ['price'] = 13500, - ['category'] = 'vans', + ['hash'] = `bison`, + ['shop'] = 'pdm', + }, + ['bobcatxl'] = { + ['name'] = 'Bobcat XL Open', + ['brand'] = 'Vapid', + ['model'] = 'bobcatxl', + ['price'] = 13500, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `bobcatxl`, - ['shop'] = 'pdm', - }, - ['burrito3'] = { - ['name'] = 'Burrito', - ['brand'] = 'Declasse', - ['model'] = 'burrito3', - ['price'] = 4000, - ['category'] = 'vans', + ['hash'] = `bobcatxl`, + ['shop'] = 'pdm', + }, + ['burrito3'] = { + ['name'] = 'Burrito', + ['brand'] = 'Declasse', + ['model'] = 'burrito3', + ['price'] = 4000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `burrito3`, - ['shop'] = 'pdm', - }, - ['gburrito2'] = { - ['name'] = 'Burrito Custom', - ['brand'] = 'Declasse', - ['model'] = 'gburrito2', - ['price'] = 11500, - ['category'] = 'vans', + ['hash'] = `burrito3`, + ['shop'] = 'pdm', + }, + ['gburrito2'] = { + ['name'] = 'Burrito Custom', + ['brand'] = 'Declasse', + ['model'] = 'gburrito2', + ['price'] = 11500, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `gburrito2`, - ['shop'] = 'pdm', - }, - ['rumpo'] = { - ['name'] = 'Rumpo', - ['brand'] = 'Bravado', - ['model'] = 'rumpo', - ['price'] = 9000, - ['category'] = 'vans', + ['hash'] = `gburrito2`, + ['shop'] = 'pdm', + }, + ['rumpo'] = { + ['name'] = 'Rumpo', + ['brand'] = 'Bravado', + ['model'] = 'rumpo', + ['price'] = 9000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `rumpo`, - ['shop'] = 'pdm', - }, - ['journey'] = { - ['name'] = 'Journey', - ['brand'] = 'Zirconium', - ['model'] = 'journey', - ['price'] = 6500, - ['category'] = 'vans', + ['hash'] = `rumpo`, + ['shop'] = 'pdm', + }, + ['journey'] = { + ['name'] = 'Journey', + ['brand'] = 'Zirconium', + ['model'] = 'journey', + ['price'] = 6500, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `journey`, - ['shop'] = 'pdm', - }, - ['minivan'] = { - ['name'] = 'Minivan', - ['brand'] = 'Vapid', - ['model'] = 'minivan', - ['price'] = 7000, - ['category'] = 'vans', + ['hash'] = `journey`, + ['shop'] = 'pdm', + }, + ['minivan'] = { + ['name'] = 'Minivan', + ['brand'] = 'Vapid', + ['model'] = 'minivan', + ['price'] = 7000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `minivan`, - ['shop'] = 'pdm', - }, - ['minivan2'] = { - ['name'] = 'Minivan Custom', - ['brand'] = 'Vapid', - ['model'] = 'minivan2', - ['price'] = 10000, - ['category'] = 'vans', + ['hash'] = `minivan`, + ['shop'] = 'pdm', + }, + ['minivan2'] = { + ['name'] = 'Minivan Custom', + ['brand'] = 'Vapid', + ['model'] = 'minivan2', + ['price'] = 10000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `minivan2`, - ['shop'] = 'pdm', - }, - ['paradise'] = { - ['name'] = 'Paradise', - ['brand'] = 'Bravado', - ['model'] = 'paradise', - ['price'] = 9000, - ['category'] = 'vans', + ['hash'] = `minivan2`, + ['shop'] = 'pdm', + }, + ['paradise'] = { + ['name'] = 'Paradise', + ['brand'] = 'Bravado', + ['model'] = 'paradise', + ['price'] = 9000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `paradise`, - ['shop'] = 'pdm', - }, - ['rumpo3'] = { - ['name'] = 'Rumpo Custom', - ['brand'] = 'Bravado', - ['model'] = 'rumpo3', - ['price'] = 19500, - ['category'] = 'vans', + ['hash'] = `paradise`, + ['shop'] = 'pdm', + }, + ['rumpo3'] = { + ['name'] = 'Rumpo Custom', + ['brand'] = 'Bravado', + ['model'] = 'rumpo3', + ['price'] = 19500, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `rumpo3`, - ['shop'] = 'pdm', - }, - ['speedo'] = { - ['name'] = 'Speedo', - ['brand'] = 'Vapid', - ['model'] = 'speedo', - ['price'] = 10000, - ['category'] = 'vans', + ['hash'] = `rumpo3`, + ['shop'] = 'pdm', + }, + ['speedo'] = { + ['name'] = 'Speedo', + ['brand'] = 'Vapid', + ['model'] = 'speedo', + ['price'] = 10000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `speedo`, - ['shop'] = 'pdm', - }, - ['speedo4'] = { - ['name'] = 'Speedo Custom', - ['brand'] = 'Vapid', - ['model'] = 'speedo4', - ['price'] = 15000, - ['category'] = 'vans', + ['hash'] = `speedo`, + ['shop'] = 'pdm', + }, + ['speedo4'] = { + ['name'] = 'Speedo Custom', + ['brand'] = 'Vapid', + ['model'] = 'speedo4', + ['price'] = 15000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `speedo4`, - ['shop'] = 'pdm', - }, - ['surfer'] = { - ['name'] = 'Surfer', - ['brand'] = 'BF', - ['model'] = 'surfer', - ['price'] = 9000, - ['category'] = 'vans', + ['hash'] = `speedo4`, + ['shop'] = 'pdm', + }, + ['surfer'] = { + ['name'] = 'Surfer', + ['brand'] = 'BF', + ['model'] = 'surfer', + ['price'] = 9000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `surfer`, - ['shop'] = 'pdm', - }, - ['youga3'] = { - ['name'] = 'Youga Classic 4x4', - ['brand'] = 'Bravado', - ['model'] = 'youga3', - ['price'] = 15000, - ['category'] = 'vans', + ['hash'] = `surfer`, + ['shop'] = 'pdm', + }, + ['youga3'] = { + ['name'] = 'Youga Classic 4x4', + ['brand'] = 'Bravado', + ['model'] = 'youga3', + ['price'] = 15000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `youga3`, - ['shop'] = 'pdm', - }, - ['youga'] = { - ['name'] = 'Youga', - ['brand'] = 'Bravado', - ['model'] = 'youga', - ['price'] = 8000, - ['category'] = 'vans', + ['hash'] = `youga3`, + ['shop'] = 'pdm', + }, + ['youga'] = { + ['name'] = 'Youga', + ['brand'] = 'Bravado', + ['model'] = 'youga', + ['price'] = 8000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `youga`, - ['shop'] = 'pdm', - }, - ['youga2'] = { - ['name'] = 'Youga Classic', - ['brand'] = 'Bravado', - ['model'] = 'youga2', - ['price'] = 14500, - ['category'] = 'vans', + ['hash'] = `youga`, + ['shop'] = 'pdm', + }, + ['youga2'] = { + ['name'] = 'Youga Classic', + ['brand'] = 'Bravado', + ['model'] = 'youga2', + ['price'] = 14500, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `youga2`, - ['shop'] = 'pdm', - }, - ['youga4'] = { --DLC +set sv_enforceGameBuild 2545 - ['name'] = 'Youga', - ['brand'] = 'Bravado', - ['model'] = 'youga4', - ['price'] = 85000, - ['category'] = 'vans', + ['hash'] = `youga2`, + ['shop'] = 'pdm', + }, + ['youga4'] = { --DLC +set sv_enforceGameBuild 2545 + ['name'] = 'Youga', + ['brand'] = 'Bravado', + ['model'] = 'youga4', + ['price'] = 85000, + ['category'] = 'vans', ['categoryLabel'] = 'Vans', - ['hash'] = `youga4`, - ['shop'] = 'pdm', - }, - -- Utility - ['sadler'] = { - ['name'] = 'Sadler', - ['brand'] = 'Vapid', - ['model'] = 'sadler', - ['price'] = 20000, - ['category'] = 'offroad', + ['hash'] = `youga4`, + ['shop'] = 'pdm', + }, + -- Utility + ['sadler'] = { + ['name'] = 'Sadler', + ['brand'] = 'Vapid', + ['model'] = 'sadler', + ['price'] = 20000, + ['category'] = 'offroad', ['categoryLabel'] = 'Off Road', - ['hash'] = `sadler`, - ['shop'] = 'pdm', - }, - ['slamtruck'] = { - ['name'] = 'Slam Truck', - ['brand'] = 'Vapid', - ['model'] = 'slamtruck', - ['price'] = 100000, - ['category'] = 'muscle', + ['hash'] = `sadler`, + ['shop'] = 'pdm', + }, + ['slamtruck'] = { + ['name'] = 'Slam Truck', + ['brand'] = 'Vapid', + ['model'] = 'slamtruck', + ['price'] = 100000, + ['category'] = 'muscle', ['categoryLabel'] = 'Muscle', - ['hash'] = `slamtruck`, - ['shop'] = 'pdm', - }, - ['warrener2'] = { --DLC +set sv_enforceGameBuild 2372 - ['name'] = 'Warrener HKR', - ['brand'] = 'Vulcar', - ['model'] = 'warrener2', - ['price'] = 30000, - ['category'] = 'sedans', + ['hash'] = `slamtruck`, + ['shop'] = 'pdm', + }, + ['warrener2'] = { --DLC +set sv_enforceGameBuild 2372 + ['name'] = 'Warrener HKR', + ['brand'] = 'Vulcar', + ['model'] = 'warrener2', + ['price'] = 30000, + ['category'] = 'sedans', ['categoryLabel'] = 'Sedans', - ['hash'] = `warrener2`, - ['shop'] = 'pdm', - }, - -- Boats - ['squalo'] = { - ['name'] = 'Squalo', - ['brand'] = 'Shitzu', - ['model'] = 'squalo', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `warrener2`, + ['shop'] = 'pdm', + }, + -- Boats + ['squalo'] = { + ['name'] = 'Squalo', + ['brand'] = 'Shitzu', + ['model'] = 'squalo', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `squalo`, - ['shop'] = 'boats', - }, - ['marquis'] = { - ['name'] = 'Marquis', - ['brand'] = 'Dinka', - ['model'] = 'marquis', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `squalo`, + ['shop'] = 'boats', + }, + ['marquis'] = { + ['name'] = 'Marquis', + ['brand'] = 'Dinka', + ['model'] = 'marquis', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `marquis`, - ['shop'] = 'boats', - }, - ['seashark'] = { - ['name'] = 'Seashark', - ['brand'] = 'Speedophile', - ['model'] = 'seashark', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `marquis`, + ['shop'] = 'boats', + }, + ['seashark'] = { + ['name'] = 'Seashark', + ['brand'] = 'Speedophile', + ['model'] = 'seashark', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `seashark`, - ['shop'] = 'boats', - }, - ['seashark2'] = { - ['name'] = 'Seashark', - ['brand'] = 'Speedophile', - ['model'] = 'seashark2', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `seashark`, + ['shop'] = 'boats', + }, + ['seashark2'] = { + ['name'] = 'Seashark', + ['brand'] = 'Speedophile', + ['model'] = 'seashark2', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `seashark2`, - ['shop'] = 'boats', - }, - ['seashark3'] = { - ['name'] = 'Seashark', - ['brand'] = 'Speedophile', - ['model'] = 'seashark3', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `seashark2`, + ['shop'] = 'boats', + }, + ['seashark3'] = { + ['name'] = 'Seashark', + ['brand'] = 'Speedophile', + ['model'] = 'seashark3', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `seashark3`, - ['shop'] = 'boats', - }, - ['jetmax'] = { - ['name'] = 'Shitzu', - ['brand'] = 'Jetmax', - ['model'] = 'jetmax', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `seashark3`, + ['shop'] = 'boats', + }, + ['jetmax'] = { + ['name'] = 'Shitzu', + ['brand'] = 'Jetmax', + ['model'] = 'jetmax', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `jetmax`, - ['shop'] = 'boats', - }, - ['tropic'] = { - ['name'] = 'Shitzu', - ['brand'] = 'Tropic', - ['model'] = 'tropic', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `jetmax`, + ['shop'] = 'boats', + }, + ['tropic'] = { + ['name'] = 'Shitzu', + ['brand'] = 'Tropic', + ['model'] = 'tropic', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `tropic`, - ['shop'] = 'boats', - }, - ['tropic2'] = { - ['name'] = 'Shitzu', - ['brand'] = 'Tropic', - ['model'] = 'tropic2', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `tropic`, + ['shop'] = 'boats', + }, + ['tropic2'] = { + ['name'] = 'Shitzu', + ['brand'] = 'Tropic', + ['model'] = 'tropic2', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `tropic2`, - ['shop'] = 'boats', - }, - ['dinghy'] = { - ['name'] = 'Nagasaki', - ['brand'] = 'Dinghy', - ['model'] = 'dinghy', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `tropic2`, + ['shop'] = 'boats', + }, + ['dinghy'] = { + ['name'] = 'Nagasaki', + ['brand'] = 'Dinghy', + ['model'] = 'dinghy', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `dinghy`, - ['shop'] = 'boats', - }, - ['dinghy2'] = { - ['name'] = 'Nagasaki', - ['brand'] = 'Dinghy', - ['model'] = 'dinghy2', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `dinghy`, + ['shop'] = 'boats', + }, + ['dinghy2'] = { + ['name'] = 'Nagasaki', + ['brand'] = 'Dinghy', + ['model'] = 'dinghy2', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `dinghy2`, - ['shop'] = 'boats', - }, - ['dinghy3'] = { - ['name'] = 'Nagasaki', - ['brand'] = 'Dinghy', - ['model'] = 'dinghy3', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `dinghy2`, + ['shop'] = 'boats', + }, + ['dinghy3'] = { + ['name'] = 'Nagasaki', + ['brand'] = 'Dinghy', + ['model'] = 'dinghy3', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `dinghy3`, - ['shop'] = 'boats', - }, - ['dinghy4'] = { - ['name'] = 'Nagasaki', - ['brand'] = 'Dinghy', - ['model'] = 'dinghy4', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `dinghy3`, + ['shop'] = 'boats', + }, + ['dinghy4'] = { + ['name'] = 'Nagasaki', + ['brand'] = 'Dinghy', + ['model'] = 'dinghy4', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `dinghy4`, - ['shop'] = 'boats', - }, - ['suntrap'] = { - ['name'] = 'Shitzu', - ['brand'] = 'Suntrap', - ['model'] = 'suntrap', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `dinghy4`, + ['shop'] = 'boats', + }, + ['suntrap'] = { + ['name'] = 'Shitzu', + ['brand'] = 'Suntrap', + ['model'] = 'suntrap', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `suntrap`, - ['shop'] = 'boats', - }, - ['speeder'] = { - ['name'] = 'Speeder', - ['brand'] = 'Pegassi', - ['model'] = 'speeder', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `suntrap`, + ['shop'] = 'boats', + }, + ['speeder'] = { + ['name'] = 'Speeder', + ['brand'] = 'Pegassi', + ['model'] = 'speeder', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `speeder`, - ['shop'] = 'boats', - }, - ['speeder2'] = { - ['name'] = 'Speeder', - ['brand'] = 'Pegassi', - ['model'] = 'speeder2', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `speeder`, + ['shop'] = 'boats', + }, + ['speeder2'] = { + ['name'] = 'Speeder', + ['brand'] = 'Pegassi', + ['model'] = 'speeder2', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `speeder2`, - ['shop'] = 'boats', - }, - ['longfin'] = { - ['name'] = 'Longfin', - ['brand'] = 'Shitzu', - ['model'] = 'longfin', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `speeder2`, + ['shop'] = 'boats', + }, + ['longfin'] = { + ['name'] = 'Longfin', + ['brand'] = 'Shitzu', + ['model'] = 'longfin', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `longfin`, - ['shop'] = 'boats', - }, - ['toro'] = { - ['name'] = 'Toro', - ['brand'] = 'Lampadati', - ['model'] = 'toro', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `longfin`, + ['shop'] = 'boats', + }, + ['toro'] = { + ['name'] = 'Toro', + ['brand'] = 'Lampadati', + ['model'] = 'toro', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `toro`, - ['shop'] = 'boats', - }, - ['toro2'] = { - ['name'] = 'Toro', - ['brand'] = 'Lampadati', - ['model'] = 'toro2', - ['price'] = 40000, - ['category'] = 'boats', + ['hash'] = `toro`, + ['shop'] = 'boats', + }, + ['toro2'] = { + ['name'] = 'Toro', + ['brand'] = 'Lampadati', + ['model'] = 'toro2', + ['price'] = 40000, + ['category'] = 'boats', ['categoryLabel'] = 'Boats', - ['hash'] = `toro2`, - ['shop'] = 'boats', - }, - -- helicopters - ['buzzard2'] = { - ['name'] = 'Buzzard', - ['brand'] = 'Unknown', - ['model'] = 'buzzard2', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `toro2`, + ['shop'] = 'boats', + }, + -- helicopters + ['buzzard2'] = { + ['name'] = 'Buzzard', + ['brand'] = 'Unknown', + ['model'] = 'buzzard2', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `buzzard2`, - ['shop'] = 'air', - }, - ['frogger'] = { - ['name'] = 'Frogger', - ['brand'] = 'Unknown', - ['model'] = 'frogger', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `buzzard2`, + ['shop'] = 'air', + }, + ['frogger'] = { + ['name'] = 'Frogger', + ['brand'] = 'Unknown', + ['model'] = 'frogger', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `frogger`, - ['shop'] = 'air', - }, - ['frogger2'] = { - ['name'] = 'Frogger', - ['brand'] = 'Unknown', - ['model'] = 'frogger2', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `frogger`, + ['shop'] = 'air', + }, + ['frogger2'] = { + ['name'] = 'Frogger', + ['brand'] = 'Unknown', + ['model'] = 'frogger2', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `frogger2`, - ['shop'] = 'air', - }, - ['maverick'] = { - ['name'] = 'Maverick', - ['brand'] = 'Unknown', - ['model'] = 'maverick', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `frogger2`, + ['shop'] = 'air', + }, + ['maverick'] = { + ['name'] = 'Maverick', + ['brand'] = 'Unknown', + ['model'] = 'maverick', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `maverick`, - ['shop'] = 'air', - }, - ['swift'] = { - ['name'] = 'Swift', - ['brand'] = 'Buckingham', - ['model'] = 'swift', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `maverick`, + ['shop'] = 'air', + }, + ['swift'] = { + ['name'] = 'Swift', + ['brand'] = 'Buckingham', + ['model'] = 'swift', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `swift`, - ['shop'] = 'air', - }, - ['swift2'] = { - ['name'] = 'Swift', - ['brand'] = 'Buckingham', - ['model'] = 'swift2', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `swift`, + ['shop'] = 'air', + }, + ['swift2'] = { + ['name'] = 'Swift', + ['brand'] = 'Buckingham', + ['model'] = 'swift2', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `swift2`, - ['shop'] = 'air', - }, - ['seasparrow'] = { - ['name'] = 'Sea Sparrow', - ['brand'] = 'Unknown', - ['model'] = 'seasparrow', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `swift2`, + ['shop'] = 'air', + }, + ['seasparrow'] = { + ['name'] = 'Sea Sparrow', + ['brand'] = 'Unknown', + ['model'] = 'seasparrow', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `seasparrow`, - ['shop'] = 'air', - }, - ['seasparrow2'] = { - ['name'] = 'Sparrow', - ['brand'] = 'Unknown', - ['model'] = 'seasparrow2', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `seasparrow`, + ['shop'] = 'air', + }, + ['seasparrow2'] = { + ['name'] = 'Sparrow', + ['brand'] = 'Unknown', + ['model'] = 'seasparrow2', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `seasparrow2`, - ['shop'] = 'air', - }, - ['seasparrow3'] = { - ['name'] = 'Sparrow', - ['brand'] = 'Unknown', - ['model'] = 'seasparrow3', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `seasparrow2`, + ['shop'] = 'air', + }, + ['seasparrow3'] = { + ['name'] = 'Sparrow', + ['brand'] = 'Unknown', + ['model'] = 'seasparrow3', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `seasparrow3`, - ['shop'] = 'air', - }, - ['supervolito'] = { - ['name'] = 'SuperVolito', - ['brand'] = 'Buckingham', - ['model'] = 'supervolito', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `seasparrow3`, + ['shop'] = 'air', + }, + ['supervolito'] = { + ['name'] = 'SuperVolito', + ['brand'] = 'Buckingham', + ['model'] = 'supervolito', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `supervolito`, - ['shop'] = 'air', - }, - ['supervolito2'] = { - ['name'] = 'SuperVolito Carbon', - ['brand'] = 'Buckingham', - ['model'] = 'supervolito2', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `supervolito`, + ['shop'] = 'air', + }, + ['supervolito2'] = { + ['name'] = 'SuperVolito Carbon', + ['brand'] = 'Buckingham', + ['model'] = 'supervolito2', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `supervolito2`, - ['shop'] = 'air', - }, - ['volatus'] = { - ['name'] = 'Volatus', - ['brand'] = 'Buckingham', - ['model'] = 'volatus', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `supervolito2`, + ['shop'] = 'air', + }, + ['volatus'] = { + ['name'] = 'Volatus', + ['brand'] = 'Buckingham', + ['model'] = 'volatus', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `volatus`, - ['shop'] = 'air', - }, - ['havok'] = { - ['name'] = 'Havok', - ['brand'] = 'Nagasaki', - ['model'] = 'havok', - ['price'] = 52000, - ['category'] = 'helicopters', + ['hash'] = `volatus`, + ['shop'] = 'air', + }, + ['havok'] = { + ['name'] = 'Havok', + ['brand'] = 'Nagasaki', + ['model'] = 'havok', + ['price'] = 52000, + ['category'] = 'helicopters', ['categoryLabel'] = 'Helicopters', - ['hash'] = `havok`, - ['shop'] = 'air', - }, - -- Planes - ['duster'] = { - ['name'] = 'Duster', - ['brand'] = 'Unknown', - ['model'] = 'duster', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `havok`, + ['shop'] = 'air', + }, + -- Planes + ['duster'] = { + ['name'] = 'Duster', + ['brand'] = 'Unknown', + ['model'] = 'duster', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `duster`, - ['shop'] = 'air', - }, - ['luxor'] = { - ['name'] = 'Luxor', - ['brand'] = 'Buckingham', - ['model'] = 'luxor', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `duster`, + ['shop'] = 'air', + }, + ['luxor'] = { + ['name'] = 'Luxor', + ['brand'] = 'Buckingham', + ['model'] = 'luxor', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `luxor`, - ['shop'] = 'air', - }, - ['luxor2'] = { - ['name'] = 'Luxor Deluxe', - ['brand'] = 'Buckingham', - ['model'] = 'luxor2', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `luxor`, + ['shop'] = 'air', + }, + ['luxor2'] = { + ['name'] = 'Luxor Deluxe', + ['brand'] = 'Buckingham', + ['model'] = 'luxor2', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `luxor2`, - ['shop'] = 'air', - }, - ['stunt'] = { - ['name'] = 'Mallard', - ['brand'] = 'Unknown', - ['model'] = 'stunt', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `luxor2`, + ['shop'] = 'air', + }, + ['stunt'] = { + ['name'] = 'Mallard', + ['brand'] = 'Unknown', + ['model'] = 'stunt', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `stunt`, - ['shop'] = 'air', - }, - ['mammatus'] = { - ['name'] = 'Mammatus', - ['brand'] = 'Unknown', - ['model'] = 'mammatus', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `stunt`, + ['shop'] = 'air', + }, + ['mammatus'] = { + ['name'] = 'Mammatus', + ['brand'] = 'Unknown', + ['model'] = 'mammatus', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `mammatus`, - ['shop'] = 'air', - }, - ['velum'] = { - ['name'] = 'Velum', - ['brand'] = 'Unknown', - ['model'] = 'velum', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `mammatus`, + ['shop'] = 'air', + }, + ['velum'] = { + ['name'] = 'Velum', + ['brand'] = 'Unknown', + ['model'] = 'velum', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `velum`, - ['shop'] = 'air', - }, - ['velum2'] = { - ['name'] = 'Velum', - ['brand'] = 'Unknown', - ['model'] = 'velum2', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `velum`, + ['shop'] = 'air', + }, + ['velum2'] = { + ['name'] = 'Velum', + ['brand'] = 'Unknown', + ['model'] = 'velum2', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `velum2`, - ['shop'] = 'air', - }, - ['shamal'] = { - ['name'] = 'Shamal', - ['brand'] = 'Buckingham', - ['model'] = 'shamal', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `velum2`, + ['shop'] = 'air', + }, + ['shamal'] = { + ['name'] = 'Shamal', + ['brand'] = 'Buckingham', + ['model'] = 'shamal', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `shamal`, - ['shop'] = 'air', - }, - ['vestra'] = { - ['name'] = 'Vestra', - ['brand'] = 'Buckingham', - ['model'] = 'vestra', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `shamal`, + ['shop'] = 'air', + }, + ['vestra'] = { + ['name'] = 'Vestra', + ['brand'] = 'Buckingham', + ['model'] = 'vestra', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `vestra`, - ['shop'] = 'air', - }, - ['dodo'] = { - ['name'] = 'Dodo', - ['brand'] = 'Mammoth', - ['model'] = 'dodo', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `vestra`, + ['shop'] = 'air', + }, + ['dodo'] = { + ['name'] = 'Dodo', + ['brand'] = 'Mammoth', + ['model'] = 'dodo', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `dodo`, - ['shop'] = 'air', - }, - ['howard'] = { - ['name'] = 'Howard NX-25', - ['brand'] = 'Buckingham', - ['model'] = 'howard', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `dodo`, + ['shop'] = 'air', + }, + ['howard'] = { + ['name'] = 'Howard NX-25', + ['brand'] = 'Buckingham', + ['model'] = 'howard', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `howard`, - ['shop'] = 'air', - }, - ['alphaz1'] = { - ['name'] = 'Alpha-Z1', - ['brand'] = 'Buckingham', - ['model'] = 'alphaz1', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `howard`, + ['shop'] = 'air', + }, + ['alphaz1'] = { + ['name'] = 'Alpha-Z1', + ['brand'] = 'Buckingham', + ['model'] = 'alphaz1', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `alphaz1`, - ['shop'] = 'air', - }, - ['nimbus'] = { - ['name'] = 'Nimbus', - ['brand'] = 'Buckingham', - ['model'] = 'nimbus', - ['price'] = 45000, - ['category'] = 'planes', + ['hash'] = `alphaz1`, + ['shop'] = 'air', + }, + ['nimbus'] = { + ['name'] = 'Nimbus', + ['brand'] = 'Buckingham', + ['model'] = 'nimbus', + ['price'] = 45000, + ['category'] = 'planes', ['categoryLabel'] = 'Planes', - ['hash'] = `nimbus`, - ['shop'] = 'air', - }, - ['brioso3'] = { --DLC +set sv_enforceGameBuild 2699 (and below) + ['hash'] = `nimbus`, + ['shop'] = 'air', + }, + ['brioso3'] = { --DLC +set sv_enforceGameBuild 2699 (and below) ['name'] = 'Brioso 300 Widebody', ['brand'] = 'Grotti', ['model'] = 'brioso3', @@ -5018,7 +5018,7 @@ QBShared.Vehicles = { ['hash'] = `sm722`, ['shop'] = 'luxury', }, - ['tenf'] = { + ['tenf'] = { ['name'] = '10F', ['brand'] = 'Obey', ['model'] = 'tenf', @@ -5391,5 +5391,5 @@ QBShared.Vehicles = { } for _, v in pairs(QBShared.Vehicles) do - QBShared.VehicleHashes[v.hash] = v + QBShared.VehicleHashes[v.hash] = v end From b9576a6084565760464eb4c52789812d9069e77e Mon Sep 17 00:00:00 2001 From: KamuiKody <62488881+KamuiKody@users.noreply.github.com> Date: Wed, 19 Oct 2022 01:46:04 -0400 Subject: [PATCH 12/22] Replace breaks with Returns currently when adding multiple jobs or items or gangs if there is a duplicate it breaks the loop instead of returning and going to the next item. --- server/exports.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server/exports.lua b/server/exports.lua index f080732..9e06f75 100644 --- a/server/exports.lua +++ b/server/exports.lua @@ -61,14 +61,14 @@ local function AddJobs(jobs) message = 'invalid_job_name' shouldContinue = false errorItem = jobs[key] - break + return end if QBCore.Shared.Jobs[key] then message = 'job_exists' shouldContinue = false errorItem = jobs[key] - break + return end QBCore.Shared.Jobs[key] = value @@ -171,14 +171,14 @@ local function AddItems(items) message = "invalid_item_name" shouldContinue = false errorItem = items[key] - break + return end if QBCore.Shared.Items[key] then message = "item_exists" shouldContinue = false errorItem = items[key] - break + return end QBCore.Shared.Items[key] = value @@ -244,14 +244,14 @@ local function AddGangs(gangs) message = "invalid_gang_name" shouldContinue = false errorItem = gangs[key] - break + return end if QBCore.Shared.Gangs[key] then message = "gang_exists" shouldContinue = false errorItem = gangs[key] - break + return end QBCore.Shared.Gangs[key] = value From daef1859b9ebffe9258b5324c38dfa9f43953740 Mon Sep 17 00:00:00 2001 From: KamuiKody <62488881+KamuiKody@users.noreply.github.com> Date: Wed, 19 Oct 2022 02:00:42 -0400 Subject: [PATCH 13/22] lint fail From 5fd425fb1aae585dc1486fe66558b4203b6554cc Mon Sep 17 00:00:00 2001 From: Stevie Date: Wed, 2 Nov 2022 06:58:33 +0000 Subject: [PATCH 14/22] Update vehicles.lua --- shared/vehicles.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 627b5ae..82fbffb 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -266,7 +266,7 @@ QBShared.Vehicles = { }, ['sentinel2'] = { ['name'] = 'Sentinel XS', - ['brand'] = ' Übermacht', + ['brand'] = 'Übermacht', ['model'] = 'sentinel2', ['price'] = 33000, ['category'] = 'coupes', @@ -3193,7 +3193,7 @@ QBShared.Vehicles = { }, ['surano'] = { ['name'] = 'Surano', - ['brand'] = ' Benefactor', + ['brand'] = 'Benefactor', ['model'] = 'surano', ['price'] = 80000, ['category'] = 'sports', @@ -4145,7 +4145,7 @@ QBShared.Vehicles = { }, ['tyrant'] = { ['name'] = 'Tyrant', - ['brand'] = ' Överflöd', + ['brand'] = 'Överflöd', ['model'] = 'tyrant', ['price'] = 2100000, ['category'] = 'super', From d41d1a5f50a05fcb8263b962cbce3e5684b14ddd Mon Sep 17 00:00:00 2001 From: Stevie Date: Wed, 2 Nov 2022 07:16:07 +0000 Subject: [PATCH 15/22] Update exports.lua --- server/exports.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server/exports.lua b/server/exports.lua index 9e06f75..f080732 100644 --- a/server/exports.lua +++ b/server/exports.lua @@ -61,14 +61,14 @@ local function AddJobs(jobs) message = 'invalid_job_name' shouldContinue = false errorItem = jobs[key] - return + break end if QBCore.Shared.Jobs[key] then message = 'job_exists' shouldContinue = false errorItem = jobs[key] - return + break end QBCore.Shared.Jobs[key] = value @@ -171,14 +171,14 @@ local function AddItems(items) message = "invalid_item_name" shouldContinue = false errorItem = items[key] - return + break end if QBCore.Shared.Items[key] then message = "item_exists" shouldContinue = false errorItem = items[key] - return + break end QBCore.Shared.Items[key] = value @@ -244,14 +244,14 @@ local function AddGangs(gangs) message = "invalid_gang_name" shouldContinue = false errorItem = gangs[key] - return + break end if QBCore.Shared.Gangs[key] then message = "gang_exists" shouldContinue = false errorItem = gangs[key] - return + break end QBCore.Shared.Gangs[key] = value From 72f036b608c0fcdd4ac7a5d9eb6ba30b4233953b Mon Sep 17 00:00:00 2001 From: KamuiKody <62488881+KamuiKody@users.noreply.github.com> Date: Sat, 19 Nov 2022 06:39:50 -0500 Subject: [PATCH 16/22] vehicle mispelling --- shared/vehicles.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 82fbffb..32f9dbf 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -5298,14 +5298,14 @@ QBShared.Vehicles = { ['hash'] = `handler`, ['shop'] = 'truck', }, - ['bulldoze'] = { + ['bulldozer'] = { ['name'] = 'Bulldozer', ['brand'] = 'HVY', - ['model'] = 'bulldoze', + ['model'] = 'bulldozer', ['price'] = 30000, ['category'] = 'industrial', ["categoryLabel"] = 'Industrial', - ['hash'] = `bulldoze`, + ['hash'] = `bulldozer`, ['shop'] = 'truck', }, ['dump'] = { From a62c17a67ad6befdfccc4f1477ee32306b3fe250 Mon Sep 17 00:00:00 2001 From: KamuiKody <62488881+KamuiKody@users.noreply.github.com> Date: Sat, 19 Nov 2022 06:42:02 -0500 Subject: [PATCH 17/22] Fix Misspelling --- shared/vehicles.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 82fbffb..32f9dbf 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -5298,14 +5298,14 @@ QBShared.Vehicles = { ['hash'] = `handler`, ['shop'] = 'truck', }, - ['bulldoze'] = { + ['bulldozer'] = { ['name'] = 'Bulldozer', ['brand'] = 'HVY', - ['model'] = 'bulldoze', + ['model'] = 'bulldozer', ['price'] = 30000, ['category'] = 'industrial', ["categoryLabel"] = 'Industrial', - ['hash'] = `bulldoze`, + ['hash'] = `bulldozer`, ['shop'] = 'truck', }, ['dump'] = { From 78fd87d126124fc8456bf112b798b084f5fe21aa Mon Sep 17 00:00:00 2001 From: Charlie Date: Sat, 19 Nov 2022 11:49:24 +0000 Subject: [PATCH 18/22] Bump version --- fxmanifest.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fxmanifest.lua b/fxmanifest.lua index 4ffd5bc..1b2f859 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -2,7 +2,7 @@ fx_version 'cerulean' game 'gta5' description 'QB-Core' -version '1.1.0' +version '1.2.0' shared_scripts { 'config.lua', From 312f24d245a6cf66d45f9f4fcb2f52838a2b361c Mon Sep 17 00:00:00 2001 From: Chris Sinclair <18537102+MannaMuncher@users.noreply.github.com> Date: Sun, 11 Dec 2022 04:43:10 -0800 Subject: [PATCH 19/22] Bypass for loading QBCore in FxDK (#792) FxDK does not include license identifiers by default and thus breaks scripts that utilize those. Without this you will get the "No valid Rockstar license" error when connecting. This fix was not my own I found it in the post linked below and tested myself. https://forum.cfx.re/t/connection-rejected-by-server-fxdk/2504365/5 Co-authored-by: Kakarot <57848836+GhzGarage@users.noreply.github.com> Co-authored-by: Stan <96954031+tom-osborne@users.noreply.github.com> Co-authored-by: Zerio <54480523+Z3rio@users.noreply.github.com> --- server/events.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/events.lua b/server/events.lua index 899ac05..6bd9e22 100644 --- a/server/events.lua +++ b/server/events.lua @@ -41,6 +41,10 @@ local function onPlayerConnecting(name, _, deferrals) end end + if GetConvarInt("sv_fxdkMode", false) then + license = 'license:AAAAAAAAAAAAAAAA' -- Dummy License + end + if not license then deferrals.done(Lang:t('error.no_valid_license')) elseif QBCore.Config.Server.CheckDuplicateLicense and QBCore.Functions.IsLicenseInUse(license) then From a3f2e3e8cae64b9cd29ac2dbedf9ef7fdcec8c4d Mon Sep 17 00:00:00 2001 From: Pride1922 <48358139+Pride1922@users.noreply.github.com> Date: Tue, 13 Dec 2022 09:20:52 +0100 Subject: [PATCH 20/22] Update pt.lua (#891) Up to date portuguese translation --- locale/pt.lua | 110 +++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 105 insertions(+), 5 deletions(-) diff --git a/locale/pt.lua b/locale/pt.lua index 8cbfebf..b181e52 100644 --- a/locale/pt.lua +++ b/locale/pt.lua @@ -7,18 +7,118 @@ local Translations = { no_access = 'Não tens acesso a este comando', company_too_poor = 'A tua empresa está falida', item_not_exist = 'O item não existe', - too_heavy = 'Inventário cheio' + too_heavy = 'Inventário cheio', + location_not_exist = 'Localização não existe', + duplicate_license = 'Licença Rockstar duplicada', + no_valid_license = 'Licença Rockstar não encontrada', + not_whitelisted = 'Não estás na whitelist deste servidor', + server_already_open = 'O Servidor já se encontra aberto', + server_already_closed = 'O Servidor já se encontra fechado', + no_permission = 'Não tem permissões para isto', + no_waypoint = 'Não colocou nenhum waypoint', + tp_error = 'Erro ao teleportar', + connecting_database_error = 'Um erro na base de dados ocorreu enquanto se conecatava ao servidor. (SQL Server Ligado?)', + connecting_database_timeout = 'Falhou a ligação à base de dados. (SQL server Ligado?)', + }, + success = { + server_opened = 'O Servidor abriu', + server_closed = 'O Servidor fechou', + teleported_waypoint = 'Teleportado para o waypoint.', }, - success = {}, info = { received_paycheck = 'Recebeste o pagamento de %{value}€', job_info = 'Emprego: %{value} | Grau: %{value2} | Serviço: %{value3}', gang_info = 'Gang: %{value} | Grau: %{value2}', on_duty = 'Agora estás de serviço!', - off_duty = 'Agora estás fora de serviço!' - } + off_duty = 'Agora estás fora de serviço!', + checking_ban = 'Olá %s. Estamos a verificar se estás banido.', + join_server = 'Bem vindo %s ao {Server Name}.', + checking_whitelisted = 'Bem vindo %s. Estamos a verificiar se estás na whitelist.', + exploit_banned = 'Foste banidos por cheats. Para mais informações visita o nosso discord: %{discord}', + exploit_dropped = 'Foste kickado por cheats!', + }, + command = { + tp = { + help = 'TP para jogador ou coordenadas (Apenas Admin)', + params = { + x = { name = 'id/x', help = 'ID do jogador ou posição X'}, + y = { name = 'y', help = 'Posição Y'}, + z = { name = 'z', help = 'Posição Z'}, + }, + }, + tpm = { help = 'TP para Marcador (Apenas Admin)' }, + togglepvp = { help = 'Ligar /Desligar PVP no servidor (Apenas Admin)' }, + addpermission = { + help = 'Dar Permissões a jogador (Apenas God)', + params = { + id = { name = 'id', help = 'ID do jogador' }, + permission = { name = 'permission', help = 'Nivel de permissão' }, + }, + }, + removepermission = { + help = 'Remover permissão de jogador (Apenas God)', + params = { + id = { name = 'id', help = 'ID do jogador' }, + permission = { name = 'permission', help = 'Nivel de permissão' }, + }, + }, + openserver = { help = 'Abrir o Servidor para todos (Apenas Admin)' }, + closeserver = { + help = 'Fechar o servidor para todos excepto Admins (Apenas Admin)', + params = { + reason = { name = 'reason', help = 'Razão para fechar(opcional)' }, + }, + }, + car = { + help = 'Spawnar Veículo (Apenas Admin)', + params = { + model = { name = 'model', help = 'Modelo do veículo' }, + }, + }, + dv = { help = 'Apagar Veículo (Apenas Admin)' }, + givemoney = { + help = 'Dar dinheiro a jogador (Apenas Admin)', + params = { + id = { name = 'id', help = 'ID do jogador' }, + moneytype = { name = 'moneytype', help = 'Tipo (cash, bank, crypto)' }, + amount = { name = 'amount', help = 'Quantidade de dinheiro' }, + }, + }, + setmoney = { + help = 'Definir a quantia de dinheiro do jogador (Apenas Admin)', + params = { + id = { name = 'id', help = 'ID do jogador' }, + moneytype = { name = 'moneytype', help = 'Tipo(cash, bank, crypto)' }, + amount = { name = 'amount', help = 'Quantidade de dinheiro' }, + }, + }, + job = { help = 'Ver o teu trabalho' }, + setjob = { + help = 'Definir o trabalho de 1 jogador (Apenas Admin)', + params = { + id = { name = 'id', help = 'ID do jogador' }, + job = { name = 'job', help = 'Nome do trabalho' }, + grade = { name = 'grade', help = 'Nivel do trabalho' }, + }, + }, + gang = { help = 'Ver o teu Gang' }, + setgang = { + help = 'Definir o Gang de um jogador (Apenas Admin)', + params = { + id = { name = 'id', help = 'ID do jogador' }, + gang = { name = 'gang', help = 'Nome do Gang' }, + grade = { name = 'grade', help = 'Nível/ Posição no Gang' }, + }, + }, + ooc = { help = 'Mensagem Chat em OOC' }, + me = { + help = 'Mostrar Mensagem local', + params = { + message = { name = 'message', help = 'Menssagem a enviar' } + }, + }, + }, } - if GetConvar('qb_locale', 'en') == 'pt' then Lang = Locale:new({ phrases = Translations, From 1ef7337ce5e267aa50724646128358b0ead47965 Mon Sep 17 00:00:00 2001 From: David Malchin Date: Wed, 14 Dec 2022 18:55:17 +0200 Subject: [PATCH 21/22] [BUG] Locale instances not actually being created (#860) Co-authored-by: Zerio <54480523+Z3rio@users.noreply.github.com> --- shared/locale.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shared/locale.lua b/shared/locale.lua index ce7b2f5..34fa835 100644 --- a/shared/locale.lua +++ b/shared/locale.lua @@ -30,10 +30,10 @@ end --- Constructor function for a new Locale class instance --- @param opts table - Constructor opts param --- @return Locale -function Locale:new(opts) - setmetatable(self, Locale) +function Locale.new(_, opts) + local self = setmetatable({}, Locale) - self.fallback = opts.fallbackLang and Locale.new({}, { + self.fallback = opts.fallbackLang and Locale:new({ warnOnMissing = false, phrases = opts.fallbackLang.phrases, }) or false @@ -142,4 +142,4 @@ function Locale:delete(phraseTarget, prefix) end end end -end +end \ No newline at end of file From cc64ee38e88c0b20f26afa989360067b8102a1b4 Mon Sep 17 00:00:00 2001 From: R0adRa93 <42512379+r0adra93@users.noreply.github.com> Date: Fri, 16 Dec 2022 17:38:31 -0500 Subject: [PATCH 22/22] Getting QB-Core ready for qb-jobs (#883) Co-authored-by: Zerio <54480523+Z3rio@users.noreply.github.com> --- client/events.lua | 13 ------------- fxmanifest.lua | 2 +- server/events.lua | 44 -------------------------------------------- shared/jobs.lua | 10 +++++++--- shared/locations.lua | 13 +------------ shared/vehicles.lua | 36 ++++++++++++++++++------------------ 6 files changed, 27 insertions(+), 91 deletions(-) diff --git a/client/events.lua b/client/events.lua index b4f91d0..b183bfb 100644 --- a/client/events.lua +++ b/client/events.lua @@ -117,19 +117,6 @@ RegisterNetEvent('QBCore:Command:GoToMarker', function() end) -- Vehicle Commands -RegisterNetEvent('QBCore:Client:VehicleInfo', function(info) - local plate = QBCore.Functions.GetPlate(info.vehicle) - local data = { - vehicle = NetToVeh(info.netid), - seat = info.seat, - name = info.modelName, - plate = plate, - driver = GetPedInVehicleSeat(info.vehicle, -1), - inseat = GetPedInVehicleSeat(info.vehicle, info.seat), - haskeys = exports['qb-vehiclekeys']:HasKeys(plate) - } - TriggerEvent('QBCore:Client:'..info.event..'Vehicle', data) -end) RegisterNetEvent('QBCore:Command:SpawnVehicle', function(vehName) local ped = PlayerPedId() diff --git a/fxmanifest.lua b/fxmanifest.lua index 1b2f859..d2e2ff5 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -2,7 +2,7 @@ fx_version 'cerulean' game 'gta5' description 'QB-Core' -version '1.2.0' +version '1.2.1' shared_scripts { 'config.lua', diff --git a/server/events.lua b/server/events.lua index 6bd9e22..32c0eb1 100644 --- a/server/events.lua +++ b/server/events.lua @@ -195,50 +195,6 @@ RegisterNetEvent('QBCore:ToggleDuty', function() TriggerClientEvent('QBCore:Client:SetDuty', src, Player.PlayerData.job.onduty) end) --- BaseEvents - --- Vehicles -RegisterServerEvent('baseevents:enteringVehicle', function(veh,seat,modelName,netid) - local src = source - local data = { - vehicle = veh, - seat = seat, - name = modelName, - netid = netid, - event = 'Entering' - } - TriggerClientEvent('QBCore:Client:VehicleInfo', src, data) -end) - -RegisterServerEvent('baseevents:enteredVehicle', function(veh,seat,modelName,netid) - local src = source - local data = { - vehicle = veh, - seat = seat, - name = modelName, - netid = netid, - event = 'Entered' - } - TriggerClientEvent('QBCore:Client:VehicleInfo', src, data) -end) - -RegisterServerEvent('baseevents:enteringAborted', function() - local src = source - TriggerClientEvent('QBCore:Client:AbortVehicleEntering', src) -end) - -RegisterServerEvent('baseevents:leftVehicle', function(veh,seat,modelName,netid) - local src = source - local data = { - vehicle = veh, - seat = seat, - name = modelName, - netid = netid, - event = 'Left' - } - TriggerClientEvent('QBCore:Client:VehicleInfo', src, data) -end) - -- Items -- This event is exploitable and should not be used. It has been deprecated, and will be removed soon. diff --git a/shared/jobs.lua b/shared/jobs.lua index 9f6615d..398b026 100644 --- a/shared/jobs.lua +++ b/shared/jobs.lua @@ -1,6 +1,9 @@ QBShared = QBShared or {} QBShared.ForceJobDefaultDutyAtLogin = true -- true: Force duty state to jobdefaultDuty | false: set duty state from database last saved -QBShared.Jobs = { +QBShared.QBJobsStatus = false -- true: integrate qb-jobs into the whole of qb-core | false: treat qb-jobs as an add-on resource. +QBShared.Jobs = {} -- All of below has been migrated into qb-jobs +if not QBShared.QBJobsStatus then + QBShared.Jobs = { ['unemployed'] = { label = 'Civilian', defaultDuty = true, @@ -125,7 +128,7 @@ QBShared.Jobs = { }, }, }, - ['bus'] = { + ['bus'] = { label = 'Bus', defaultDuty = true, offDutyPay = false, @@ -281,4 +284,5 @@ QBShared.Jobs = { }, }, }, -} + } +end diff --git a/shared/locations.lua b/shared/locations.lua index 7c97fed..1317991 100644 --- a/shared/locations.lua +++ b/shared/locations.lua @@ -10,33 +10,25 @@ QBShared.Locations = { ['pizzaria'] = vector4(790.4561, -758.4601, 26.7424, 270.2329), ['catcafe'] = vector4(-580.8388, -1072.7872, 22.3296, 359.0078), ['carmeet'] = vector4(958.8237, -1699.6659, 29.5574, 71.2731), - ['davispd'] = vector4(382.5791, -1591.1827, 29.2828, 145.0991), ['popsdiner'] = vector4(1595.9753, 6448.6421, 25.3170, 28.3026), - ['davisfirestation'] = vector4(216.7576, -1638.3801, 29.5151, 137.8174), ['harmony'] = vector4(1183.0693, 2648.5313, 37.8363, 194.0603), ['haters'] = vector4(-1117.1525, -1439.4297, 5.1075, 103.4411), ['hayes'] = vector4(-1435.7040, -445.7360, 35.5964, 220.1762), ['pdm'] = vector4(-48.2113, -1105.4769, 27.2634, 339.5899), ['bennys'] = vector4(-47.5289, -1042.6086, 28.3532, 247.9748), - ['impound'] = vector4(-190.5874, -1156.1343, 23.0482, 158.9385), ['lamesaauto'] = vector4(720.4776, -1092.1934, 22.2866, 310.1469), - ['lamesapd'] = vector4(824.3735, -1290.0670, 28.2364, 266.1293), ['lostmc'] = vector4(982.6339, -104.7095, 74.8488, 30.8738), ['pillbox'] = vector4(298.1153, -584.2825, 43.2609, 252.7553), - ['mrpd'] = vector4(432.0686, -981.6853, 30.7119, 267.3501), ['mirrorparkhouse1'] = vector4(945.9535, -652.9119, 58.0228, 90.5541), ['pacificbank'] = vector4(229.9529, 214.3890, 105.5561, 294.6791), ['paletoliquor'] = vector4(-154.2287, 6328.8682, 31.5665, 133.1992), - ['paletopd'] = vector4(-436.0935, 6015.2026, 31.4892, 132.9752), ['paletogasstation'] = vector4(120.2420, 6625.4722, 31.9580, 36.5687), ['pinkcage'] = vector4(323.9055, -203.2524, 54.0866, 186.8505), ['ponsonbys1'] = vector4(-165.2497, -304.3988, 38.07126, 0.0), ['ponsonbys2'] = vector4(-1448.1, -236.8420, 48.15098, 0.0), ['ponsonbys3'] = vector4(-709.8120, -150.6267, 35.75312, 0.0), - ['prison'] = vector4(1847.1284, 2586.0696, 45.6726, 91.7828), ['rangerstation'] = vector4(387.3204, 790.1508, 187.6927, 4.7656), ['recordastudio'] = vector4(473.3006, -109.4360, 62.7418, 350.8488), - ['sandypd'] = vector4(1839.7510, 3667.9907, 33.8787, 29.1744), ['suburban1'] = vector4(124.9756, -217.6290, 55.81879, 0.0), ['suburban2'] = vector4(617.4776, 2757.4810, 43.34935, 0.0), ['suburban3'] = vector4(-1195.8690, -773.5746, 18.58485, 0.0), @@ -51,8 +43,5 @@ QBShared.Locations = { -- Unclejust ['digitalden'] = vector4(-656.28, -849.92, 24.51, 167.42), ['ifruitstore1'] = vector4(-646.78, -288.17, 35.49, 297.73), - ['ifruitstore2'] = vector4(-778.7451, -598.2717, 30.2772, 181.0197), - ['taxijob'] = vector4(908.7, -166.45, 74.13, 54.88), - ['vineyard'] = vector4(-1892.29, 2038.47, 140.86, 339.23), - ['weazelnews'] = vector4(-604.82, -933.22, 23.86, 292.3), + ['ifruitstore2'] = vector4(-778.7451, -598.2717, 30.2772, 181.0197) } \ No newline at end of file diff --git a/shared/vehicles.lua b/shared/vehicles.lua index 32f9dbf..8b396fb 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -3,15 +3,15 @@ QBShared.VehicleHashes = {} QBShared.Vehicles = { --- Compacts - ['asbo'] = { - ['name'] = 'Asbo', - ['brand'] = 'Maxwell', - ['model'] = 'asbo', - ['price'] = 4000, - ['category'] = 'compacts', - ['categoryLabel'] = 'Compacts', - ['hash'] = `asbo`, - ['shop'] = {'pdm'}, + ['asbo'] = { -- This has to match the spawn code of the vehicle + ['name'] = 'Asbo', -- This is the display of the vehicle + ['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 + ['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'} }, ['blista'] = { ['name'] = 'Blista', @@ -5075,7 +5075,7 @@ QBShared.Vehicles = { ['price'] = 100000, ['category'] = 'commercial', ["categoryLabel"] = 'Commercial', - ['hash'] = `Hauler`, + ['hash'] = `hauler`, ['shop'] = 'truck', }, ['packer'] = { @@ -5115,7 +5115,7 @@ QBShared.Vehicles = { ['price'] = 100000, ['category'] = 'commercial', ["categoryLabel"] = 'Commercial', - ['hash'] = `Phantom`, + ['hash'] = `phantom`, ['shop'] = 'truck', }, ['phantom3'] = { @@ -5125,7 +5125,7 @@ QBShared.Vehicles = { ['price'] = 110000, ['category'] = 'commercial', ["categoryLabel"] = 'Commercial', - ['hash'] = `Phantom Custom`, + ['hash'] = `phantom3`, ['shop'] = 'truck', }, ['benson'] = { @@ -5245,7 +5245,7 @@ QBShared.Vehicles = { ['price'] = 45000, ['category'] = 'vans', ["categoryLabel"] = 'Vans', - ['hash'] = `boxville4`, + ['hash'] = `boxville5`, ['shop'] = 'truck', }, ['pony'] = { @@ -5309,7 +5309,7 @@ QBShared.Vehicles = { ['shop'] = 'truck', }, ['dump'] = { - ['name'] = 'HVY Dump Truck (Off Road)', + ['name'] = 'Dump Truck (Off Road)', ['brand'] = 'HVY', ['model'] = 'dump', ['price'] = 30000, @@ -5349,7 +5349,7 @@ QBShared.Vehicles = { ['shop'] = 'truck', }, ['mixer2'] = { - ['name'] = 'Mixer2', + ['name'] = 'Cement Mixer 2', ['brand'] = 'HVY', ['model'] = 'mixer2', ['price'] = 30000, @@ -5359,7 +5359,7 @@ QBShared.Vehicles = { ['shop'] = 'truck', }, ['rubble'] = { - ['name'] = 'Jobuilt Dump Truck (Street Legal)', + ['name'] = 'Dump Truck (Street Legal)', ['brand'] = 'Jobuilt', ['model'] = 'rubble', ['price'] = 30000, @@ -5369,7 +5369,7 @@ QBShared.Vehicles = { ['shop'] = 'truck', }, ['tiptruck'] = { - ['name'] = 'Brute Dump Truck (Street Legal)', + ['name'] = 'Dump Truck (Street Legal)', ['brand'] = 'Brute', ['model'] = 'tiptruck', ['price'] = 30000, @@ -5379,7 +5379,7 @@ QBShared.Vehicles = { ['shop'] = 'truck', }, ['tiptruck2'] = { - ['name'] = 'MTL Dump Truck (Street Legal)', + ['name'] = 'Dump Truck (Street Legal)', ['brand'] = 'MTL', ['model'] = 'tiptruck2', ['price'] = 30000,