G9 Docs
DiscordYoutubeTebex
  • Welcome
  • INFO
    • How can i download my script
    • How can i transfer my script
    • What is escrow system?
  • Scripts
    • Core
    • Loading Screen
      • Installation
      • Guide to Changes
      • Config
    • FPS Menu
      • Installation
      • Language
      • Config
    • Shop
      • Installation
      • Language
      • Config
      • Editable Files
    • Bank
      • Installation
      • Language
      • Config
      • Editable Files
      • Exports
    • Vehicleshop
      • Installation
      • Language
      • Config
      • Editable Files
    • Cleaner Job
      • Installation
      • Language
      • Config
Powered by GitBook
On this page
  1. Scripts
  2. Vehicleshop

Editable Files

local fw = exports["G9-core"]:getFw()
local G9Core = exports["G9-core"]:core()

function notify(msg, msgType)
    if fw then
        return G9Core.Functions.Notify(msg, msgType, 2500)
    elseif not fw then
        return G9Core.ShowNotification(msg,msgType)
    else
        return nil
    end
end

RegisterNetEvent('g9-vehicleshop:client:sendNotify')
AddEventHandler('g9-vehicleshop:client:sendNotify', function(msg, _type)
    notify(msg, _type)
end)

CreateThread(function()
    for k,v in pairs(cfg.VehicleShops) do
        coords = v.blip.coords
        blipConfig = v.blip
        if blipConfig.display then
            local blip = AddBlipForCoord(coords.x, coords.y, coords.z)
            SetBlipSprite(blip, blipConfig.sprite)
            SetBlipColour(blip, blipConfig.color)
            SetBlipScale(blip, blipConfig.size)
            SetBlipAsShortRange(blip, true)
            BeginTextCommandSetBlipName("STRING")
            AddTextComponentString(blipConfig.text)
            EndTextCommandSetBlipName(blip)
        end
    end
end)

currentZone = nil


for k, v in pairs(cfg.VehicleShops) do
    if cfg.useTarget then
        RequestModel(v.ped)
            while not HasModelLoaded(v.ped) do
                Wait(0)
            end
            local ped = CreatePed(4, GetHashKey(v.ped), v.pedCoords.x, v.pedCoords.y, v.pedCoords.z -1, v.pedCoords.w, false, false)
            SetEntityHeading(ped, v.pedCoords.w)
            FreezeEntityPosition(ped, true)
            SetEntityInvincible(ped, true)
            SetBlockingOfNonTemporaryEvents(ped, true)
            SetPedDiesWhenInjured(ped, false)
            SetPedCanRagdoll(ped, false)
            
            if v.job == 'none' then
                if GetResourceState('ox_target') == 'started' then
                    local options = {
                        {
                            label = lang('open_dealer_target'),
                            icon = "fas fa-briefcase",
                            onSelect = function()
                                currentZone = k
                                openMenu()
                            end,
                        }
                    }
                    exports.ox_target:addSphereZone({
                        coords = GetEntityCoords(ped),
                        radius = 0.35,
                        options = options,
                        debug = false,
                    })
                else
                    exports['qb-target']:AddTargetEntity(ped, {
                        options = {
                            {
                                label = lang('open_dealer_target'),
                                icon = "fas fa-briefcase",
                                action = function()
                                    currentZone = k
                                    openMenu()
                                end,
                            }
                        },
                        distance = 2.0
                    })
                end
            else
                if GetResourceState('ox_target') == 'started' then
                    local options = {
                        {
                            label = lang('open_dealer_target'),
                            icon = "fas fa-briefcase",
                            onSelect = function()
                                currentZone = k
                                openMenu()
                            end,
                            groups = v.job
                        }
                    }
                    exports.ox_target:addSphereZone({
                        coords = GetEntityCoords(ped),
                        radius = 0.35,
                        options = options,
                        debug = false,
                        
                    })
                else
                    exports['qb-target']:AddTargetEntity(ped, {
                        options = {
                            {
                                label =lang('open_dealer_target'),
                                icon = "fas fa-briefcase",
                                action = function()
                                    currentZone = k
                                    openMenu()
                                end,
                                job = v.job
                            }
                        },
                        distance = 2.0
                    })
                end
            end
        else
            local coord = vector3(v.pedCoords.x, v.pedCoords.y, v.pedCoords.z)
            lib.zones.sphere({
                coords = coord,
                radius = 2,
                onEnter = function()
                    PlayerJob = exports['G9-core']:pJob()
                    currentZone = k
                    if PlayerJob == v.job then
                        lib.showTextUI(lang('open_dealer'))
                    elseif v.job =='none' then
                        lib.showTextUI(lang('open_dealer'))
                    end
                end,
                onExit = function()
                    lib.hideTextUI()
                end,
                inside = function()
                    PlayerJob = exports['G9-core']:pJob()
                    if IsControlJustPressed(0, 38) then
                        currentZone = k
                        if PlayerJob == v.job then
                            lib.hideTextUI()                        
                            openMenu()
                            lib.showTextUI(lang('open_dealer'))
                        elseif v.job =='none' then
                            lib.hideTextUI()
                            openMenu()
                            lib.showTextUI(lang('open_dealer'))
                        end
                    end
                end,
            })
        end
end
cfg.cars = {
    --- Compacts (0)
    {
        model = '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
        price = 4000,          -- The price that the vehicle sells for
        category = 'compacts', -- Catgegory of the vehilce, stick with GetVehicleClass() options https://docs.fivem.net/natives/?_0x29439776AAA00A62
        type = 'automobile',   -- Vehicle type, refer here https://docs.fivem.net/natives/?_0x6AE51D4B & here https://docs.fivem.net/natives/?_0xA273060E
        shop = 'pdm',          -- Can be a single shop or multiple shops. For multiple shops for example {'shopname1','shopname2','shopname3'}
    },
    { model = 'blista',          name = 'Blista',                        brand = 'Dinka',           price = 13000,   category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'brioso',          name = 'Brioso R/A',                    brand = 'Grotti',          price = 20000,   category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'club',            name = 'Club',                          brand = 'BF',              price = 8000,    category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dilettante',      name = 'Dilettante',                    brand = 'Karin',           price = 9000,    category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'kanjo',           name = 'Blista Kanjo',                  brand = 'Dinka',           price = 12000,   category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'issi2',           name = 'Issi',                          brand = 'Weeny',           price = 7000,    category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'issi3',           name = 'Issi Classic',                  brand = 'Weeny',           price = 5000,    category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'panto',           name = 'Panto',                         brand = 'Benefactor',      price = 3200,    category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'prairie',         name = 'Prairie',                       brand = 'Bollokan',        price = 30000,   category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'rhapsody',        name = 'Rhapsody',                      brand = 'Declasse',        price = 10000,   category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'brioso2',         name = 'Brioso 300',                    brand = 'Grotti',          price = 12000,   category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'weevil',          name = 'Weevil',                        brand = 'BF',              price = 9000,    category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 30},
    { model = 'issi7',           name = 'Issi Sport',                    brand = 'Weeny',           price = 100000,  category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20 },
    { model = 'blista2',         name = 'Blista Compact',                brand = 'Dinka',           price = 18950,   category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'blista3',         name = 'Blista Go Go Monkey',           brand = 'Dinka',           price = 15000,   category = 'compacts',       type = 'automobile', shop = 'pdm' ,referral = 10},

    --- Sedans (1)
    { model = 'asea',            name = 'Asea',                          brand = 'Declasse',        price = 2500,    category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'asterope',        name = 'Asterope',                      brand = 'Karin',           price = 11000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cog55',           name = 'Cognoscenti 55',                brand = 'Enus',            price = 22000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cognoscenti',     name = 'Cognoscenti',                   brand = 'Enus',            price = 22500,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'emperor',         name = 'Emperor',                       brand = 'Albany',          price = 4250,    category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'fugitive',        name = 'Fugitive',                      brand = 'Cheval',          price = 20000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'glendale',        name = 'Glendale',                      brand = 'Benefactor',      price = 3400,    category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 15},
    { model = 'glendale2',       name = 'Glendale Custom',               brand = 'Benefactor',      price = 12000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'ingot',           name = 'Ingot',                         brand = 'Vulcar',          price = 4999,    category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 15},
    { model = 'intruder',        name = 'Intruder',                      brand = 'Karin',           price = 11250,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'premier',         name = 'Premier',                       brand = 'Declasse',        price = 12000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 30},
    { model = 'primo',           name = 'Primo',                         brand = 'Albany',          price = 5000,    category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'primo2',          name = 'Primo Custom',                  brand = 'Albany',          price = 14500,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'regina',          name = 'Regina',                        brand = 'Dundreary',       price = 7000,    category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stafford',        name = 'Stafford',                      brand = 'Enus',            price = 30000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stanier',         name = 'Stanier',                       brand = 'Vapid',           price = 19000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stratum',         name = 'Stratum',                       brand = 'Zirconium',       price = 15000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stretch',         name = 'Stretch',                       brand = 'Dundreary',       price = 19000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'superd',          name = 'Super Diamond',                 brand = 'Enus',            price = 17000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'surge',           name = 'Surge',                         brand = 'Cheval',          price = 20000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tailgater',       name = 'Tailgater',                     brand = 'Obey',            price = 22000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'warrener',        name = 'Warrener',                      brand = 'Vulcar',          price = 4000,    category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'washington',      name = 'Washington',                    brand = 'Albany',          price = 7000,    category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tailgater2',      name = 'Tailgater S',                   brand = 'Obey',            price = 51000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cinquemila',      name = 'Cinquemila',                    brand = 'Lampadati',       price = 125000,  category = 'sedans',          type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'iwagen',          name = 'I-Wagen',                       brand = 'Obey',            price = 225000,  category = 'sedans',            type = 'automobile', shop = 'pdm' ,referral = 75},
    { model = 'oracle',          name = 'Oracle',                        brand = 'Ubermacht',       price = 22000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'schafter2',       name = 'Schafter',                      brand = 'Benefactor',      price = 16000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'warrener2',       name = 'Warrener HKR',                  brand = 'Vulcar',          price = 30000,   category = 'sedans',         type = 'automobile', shop = 'pdm' ,referral = 20},

    --- SUV (2)
    { model = 'baller',          name = 'Baller',                        brand = 'Gallivanter',     price = 22000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'baller2',         name = 'Baller II',                     brand = 'Gallivanter',     price = 15000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'baller3',         name = 'Baller LE',                     brand = 'Gallivanter',     price = 15000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 5},
    { model = 'baller4',         name = 'Baller LE LWB',                 brand = 'Gallivanter',     price = 29000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'bjxl',            name = 'BeeJay XL',                     brand = 'Karin',           price = 19000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cavalcade',       name = 'Cavalcade',                     brand = 'Albany',          price = 14000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'cavalcade2',      name = 'Cavalcade II',                  brand = 'Albany',          price = 16500,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'contender',       name = 'Contender',                     brand = 'Vapid',           price = 35000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dubsta',          name = 'Dubsta',                        brand = 'Benefactor',      price = 19000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dubsta2',         name = 'Dubsta Luxury',                 brand = 'Benefactor',      price = 19500,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 30},
    { model = 'fq2',             name = 'FQ2',                           brand = 'Fathom',          price = 18500,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'granger',         name = 'Granger',                       brand = 'Declasse',        price = 22000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gresley',         name = 'Gresley',                       brand = 'Bravado',         price = 25000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'habanero',        name = 'Habanero',                      brand = 'Emperor',         price = 20000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'huntley',         name = 'Huntley S',                     brand = 'Enus',            price = 24500,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 30},
    { model = 'landstalker',     name = 'Landstalker',                   brand = 'Dundreary',       price = 12000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'landstalker2',    name = 'Landstalker XL',                brand = 'Dundreary',       price = 26000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 26},
    { model = 'novak',           name = 'Novak',                         brand = 'Lampadati',       price = 70000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'patriot',         name = 'Patriot',                       brand = 'Mammoth',         price = 21000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 30},
    { model = 'patriot2',        name = 'Patriot Stretch',               brand = 'Mammoth',         price = 21000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'radi',            name = 'Radius',                        brand = 'Vapid',           price = 18000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'rebla',           name = 'Rebla GTS',                     brand = 'Ubermacht',       price = 21000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 30},
    { model = 'rocoto',          name = 'Rocoto',                        brand = 'Obey',            price = 13000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'seminole',        name = 'Seminole',                      brand = 'Canis',           price = 20000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'seminole2',       name = 'Seminole Frontier',             brand = 'Canis',           price = 13000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'serrano',         name = 'Serrano',                       brand = 'Benefactor',      price = 48000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'toros',           name = 'Toros',                         brand = 'Pegassi',         price = 65000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'xls',             name = 'XLS',                           brand = 'Benefactor',      price = 17000,   category = 'suvs',           type = 'automobile', shop = 'pdm' ,referral = 20},

    --- Coupes (3)
    { model = 'cogcabrio',       name = 'Cognoscenti Cabrio',            brand = 'Enus',            price = 30000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'exemplar',        name = 'Exemplar',                      brand = 'Dewbauchee',      price = 40000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'f620',            name = 'F620',                          brand = 'Ocelot',          price = 32500,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'felon',           name = 'Felon',                         brand = 'Lampadati',       price = 31000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'felon2',          name = 'Felon GT',                      brand = 'Lampadati',       price = 37000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'jackal',          name = 'Jackal',                        brand = 'Ocelot',          price = 19000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'oracle2',         name = 'Oracle XS',                     brand = 'Ubermacht',       price = 28000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sentinel',        name = 'Sentinel',                      brand = 'Ubermacht',       price = 30000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sentinel2',       name = 'Sentinel XS',                   brand = 'Ubermacht',       price = 33000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'windsor',         name = 'Windsor',                       brand = 'Enus',            price = 27000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'windsor2',        name = 'Windsor Drop',                  brand = 'Enus',            price = 34000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'zion',            name = 'Zion',                          brand = 'Ubermacht',       price = 22000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'zion2',           name = 'Zion Cabrio',                   brand = 'Ubermacht',       price = 28000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'previon',         name = 'Previon',                       brand = 'Karin',           price = 149000,  category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'futo',            name = 'Futo',                          brand = 'Karin',           price = 17500,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sentinel3',       name = 'Sentinel Classic',              brand = 'Ubermacht',       price = 70000,   category = 'coupes',         type = 'automobile', shop = 'pdm' ,referral = 20},

    --- Muscle (4)
    { model = 'blade',           name = 'Blade',                         brand = 'Vapid',           price = 23500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'buccaneer',       name = 'Buccaneer',                     brand = 'Albany',          price = 22500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'buccaneer2',      name = 'Buccaneer Rider',               brand = 'Albany',          price = 24500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'chino',           name = 'Chino',                         brand = 'Vapid',           price = 5000,    category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'chino2',          name = 'Chino Luxe',                    brand = 'Vapid',           price = 8000,    category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'clique',          name = 'Clique',                        brand = 'Vapid',           price = 20000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'coquette3',       name = 'Coquette BlackFin',             brand = 'Invetero',        price = 180000,  category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'deviant',         name = 'Deviant',                       brand = 'Schyster',        price = 70000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dominator',       name = 'Dominator',                     brand = 'Vapid',           price = 62500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dominator2',      name = 'Pißwasser Dominator',           brand = 'Vapid',           price = 50000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dominator3',      name = 'Dominator GTX',                 brand = 'Vapid',           price = 70000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dominator7',      name = 'Dominator ASP',                 brand = 'Vapid',           price = 110000,  category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dukes',           name = 'Dukes',                         brand = 'Imponte',         price = 23500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'faction',         name = 'Faction',                       brand = 'Willard',         price = 17000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'faction2',        name = 'Faction Rider',                 brand = 'Willard',         price = 19000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'faction3',        name = 'Faction Custom Donk',           brand = 'Willard',         price = 35000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'ellie',           name = 'Ellie',                         brand = 'Vapid',           price = 42250,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gauntlet',        name = 'Gauntlet',                      brand = 'Bravado',         price = 28500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gauntlet2',       name = 'Redwood Gauntlet',              brand = 'Bravado',         price = 70000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gauntlet3',       name = 'Classic Gauntlet',              brand = 'Bravado',         price = 75000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gauntlet4',       name = 'Gauntlet Hellfire',             brand = 'Bravado',         price = 80000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gauntlet5',       name = 'Gauntlet Classic',       brand = 'Bravado',         price = 120000,  category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'hermes',          name = 'Hermes',                        brand = 'Albany',          price = 535000,  category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'hotknife',        name = 'Hotknife',                      brand = 'Vapid',           price = 90000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'hustler',         name = 'Hustler',                       brand = 'Vapid',           price = 95000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'impaler',         name = 'Impaler',                       brand = 'Vapid',           price = 95000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'lurcher',         name = 'Lurcher',                       brand = 'Bravado',         price = 21000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'nightshade',      name = 'Nightshade',                    brand = 'Imponte',         price = 70000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'phoenix',         name = 'Phoenix',                       brand = 'Imponte',         price = 65000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'picador',         name = 'Picador',                       brand = 'Cheval',          price = 20000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'ratloader2',      name = 'Ratloader',                     brand = 'Bravado',      price = 20000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'ruiner',          name = 'Ruiner',                        brand = 'Imponte',         price = 29000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sabregt',         name = 'Sabre GT Turbo',                brand = 'Declasse',        price = 23000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sabregt2',        name = 'Sabre GT Turbo C',         brand = 'Declasse',        price = 26500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'slamvan',         name = 'Slam Van',                      brand = 'Vapid',           price = 30000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'slamvan2',        name = 'Lost Slam Van',                 brand = 'Vapid',           price = 90000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'slamvan3',        name = 'Slam Van Custom',               brand = 'Vapid',           price = 17000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stalion',         name = 'Stallion',                      brand = 'Declasse',        price = 33000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stalion2',        name = 'Stallion Burgershot',           brand = 'Declasse',        price = 40000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tampa',           name = 'Tampa',                         brand = 'Declasse',        price = 24500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tulip',           name = 'Tulip',                         brand = 'Declasse',        price = 80000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'vamos',           name = 'Vamos',                         brand = 'Declasse',        price = 30000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'vigero',          name = 'Vigero',                        brand = 'Declasse',        price = 39500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'virgo',           name = 'Virgo',                         brand = 'Albany',          price = 22000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'virgo2',          name = 'Virgo Custom Classic',          brand = 'Dundreary',       price = 21000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'virgo3',          name = 'Virgo Classic',                 brand = 'Dundreary',       price = 21000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'voodoo',          name = 'Voodoo',                        brand = 'Declasse',        price = 13000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'yosemite',        name = 'Yosemite',                      brand = 'Declasse',        price = 19500,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'yosemite2',       name = 'Yosemite Drift',                brand = 'Declasse',        price = 55000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'manana',          name = 'Manana',                        brand = 'Albany',          price = 12800,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'manana2',         name = 'Manana Custom',                 brand = 'Albany',          price = 24000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tampa2',          name = 'Drift Tampa',                   brand = 'Declasse',        price = 80000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'weevil2',         name = 'Weevil Custom',                 brand = 'BF',              price = 95000,   category = 'muscle',         type = 'automobile', shop = 'pdm' ,referral = 20},

    --- Sports Classic (5)
    { model = 'ardent',          name = 'Ardent',                        brand = 'Ocelot',          price = 30000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'btype',           name = 'Roosevelt',                     brand = 'Albany',          price = 75000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'btype2',          name = 'Franken Stange',                brand = 'Albany',          price = 87000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 60},
    { model = 'btype3',          name = 'Roosevelt Valor',               brand = 'Albany',          price = 63000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'casco',           name = 'Casco',                         brand = 'Lampadati',       price = 100000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'dynasty',         name = 'Dynasty',                       brand = 'Weeny',           price = 25000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 60},
    { model = 'fagaloa',         name = 'Fagaloa',                       brand = 'Vulcar',          price = 13000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'feltzer3',        name = 'Stirling GT',                   brand = 'Benefactor',      price = 115000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'gt500',           name = 'GT500',                         brand = 'Grotti',          price = 130000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 60},
    { model = 'infernus2',       name = 'Infernus Classic',              brand = 'Pegassi',         price = 245000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'jb7002',          name = 'JB 700W',                       brand = 'Dewbauchee',      price = 40000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'mamba',           name = 'Mamba',                         brand = 'Declasse',        price = 140000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 60},
    { model = 'michelli',        name = 'Michelli GT',                   brand = 'Lampadati',       price = 30000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'monroe',          name = 'Monroe',                        brand = 'Pegassi',         price = 115000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'nebula',          name = 'Nebula',                        brand = 'Vulcar',          price = 22000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'peyote',          name = 'Peyote',                        brand = 'Vapid',           price = 23500,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'peyote3',         name = 'Peyote Custom',                 brand = 'Vapid',           price = 48000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'pigalle',         name = 'Pigalle',                       brand = 'Lampadati',       price = 92000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'rapidgt3',        name = 'Rapid GT Classic',              brand = 'Dewbauchee',      price = 90000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'retinue',         name = 'Retinue',                       brand = 'Vapid',           price = 32000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'retinue2',        name = 'Retinue MKII',                  brand = 'Vapid',           price = 38000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'savestra',        name = 'Savestra',                      brand = 'Annis',           price = 67000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stinger',         name = 'Stinger',                       brand = 'Grotti',          price = 39500,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stingergt',       name = 'Stinger GT',                    brand = 'Grotti',          price = 70000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'stromberg',       name = 'Stromberg',                     brand = 'Ocelot',          price = 80000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'swinger',         name = 'Swinger',                       brand = 'Ocelot',          price = 221000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'torero',          name = 'Torero',                        brand = 'Pegassi',         price = 84000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tornado',         name = 'Tornado',                       brand = 'Declasse',        price = 21000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tornado2',        name = 'Tornado Convertible',           brand = 'Declasse',        price = 22000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tornado5',        name = 'Tornado Custom',                brand = 'Declasse',        price = 22000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'turismo2',        name = 'Turismo Classic',               brand = 'Grotti',          price = 170000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'viseris',         name = 'Viseris',                       brand = 'Lampadati',       price = 210000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 90},
    { model = 'z190',            name = '190Z',                          brand = 'Karin',           price = 78000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'ztype',           name = 'Z-Type',                        brand = 'Truffade',        price = 270000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'zion3',           name = 'Zion Classic',                  brand = 'Ubermacht',       price = 45000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cheburek',        name = 'Cheburek',                      brand = 'Rune',            price = 7000,    category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'toreador',        name = 'Toreador',                      brand = 'Pegassi',         price = 50000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'peyote2',         name = 'Peyote Gasser',                 brand = 'Vapid',           price = 40000,   category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'coquette2',       name = 'Coquette Classic',              brand = 'Invetero',        price = 165000,  category = 'sportsclassics', type = 'automobile', shop = 'pdm' ,referral = 20},

    --- Sports (6)
    { model = 'alpha',           name = 'Alpha',                         brand = 'Albany',          price = 53000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'banshee',         name = 'Banshee',                       brand = 'Bravado',         price = 56000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'bestiagts',       name = 'Bestia GTS',                    brand = 'Grotti',          price = 37000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'buffalo',         name = 'Buffalo',                       brand = 'Bravado',         price = 18750,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'buffalo2',        name = 'Buffalo S',                     brand = 'Bravado',         price = 24500,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'carbonizzare',    name = 'Carbonizzare',                  brand = 'Grotti',          price = 155000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'comet2',          name = 'Comet',                         brand = 'Pfister',         price = 130000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 70},
    { model = 'comet3',          name = 'Comet Retro Custom',            brand = 'Pfister',         price = 175000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'comet4',          name = 'Comet Safari',                  brand = 'Pfister',         price = 110000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'comet5',          name = 'Comet SR',                      brand = 'Pfister',         price = 155000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 25},
    { model = 'coquette',        name = 'Coquette',                      brand = 'Invetero',        price = 145000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'coquette4',       name = 'Coquette D10',                  brand = 'Invetero',        price = 220000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 40},
    { model = 'drafter',         name = '8F Drafter',                    brand = 'Obey',            price = 80000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 10},
    { model = 'elegy',           name = 'Elegy Retro Custom',            brand = 'Annis',           price = 145000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'elegy2',          name = 'Elegy RH8',                     brand = 'Annis',           price = 150000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 50},
    { model = 'feltzer2',        name = 'Feltzer',                       brand = 'Benefactor',      price = 97000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 70},
    { model = 'flashgt',         name = 'Flash GT',                      brand = 'Vapid',           price = 48000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'furoregt',        name = 'Furore GT',                     brand = 'Lampadati',       price = 78000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gb200',           name = 'GB 200',                        brand = 'Vapid',           price = 140000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'komoda',          name = 'Komoda',                        brand = 'Lampadati',       price = 55000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'imorgon',         name = 'Imorgon',                       brand = 'Overflod',        price = 120000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'italigto',        name = 'Itali GTO',                     brand = 'Progen',          price = 260000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'jugular',         name = 'Jugular',                       brand = 'Ocelot',          price = 80000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'jester',          name = 'Jester',                        brand = 'Dinka',           price = 132250,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'jester2',         name = 'Jester Racecar',                brand = 'Dinka',           price = 210000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'jester3',         name = 'Jester Classic',                brand = 'Dinka',           price = 85000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'khamelion',       name = 'Khamelion',                     brand = 'Hijak',           price = 90000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'kuruma',          name = 'Kuruma',                        brand = 'Karin',           price = 72000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'locust',          name = 'Locust',                        brand = 'Ocelot',          price = 200000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'lynx',            name = 'Lynx',                          brand = 'Ocelot',          price = 150000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 70},
    { model = 'massacro',        name = 'Massacro',                      brand = 'Dewbauchee',      price = 110000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'massacro2',       name = 'Massacro Racecar',              brand = 'Dewbauchee',      price = 80000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'neo',             name = 'Neo',                           brand = 'Vysser',          price = 230000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'neon',            name = 'Neon',                          brand = 'Pfister',         price = 220000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'ninef',           name = '9F',                            brand = 'Obey',            price = 95000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'ninef2',          name = '9F Cabrio',                     brand = 'Obey',            price = 105000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'omnis',           name = 'Omnis',                         brand = 'Obey',             price = 90000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'paragon',         name = 'Paragon',                       brand = 'Enus',            price = 60000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'pariah',          name = 'Pariah',                        brand = 'Ocelot',          price = 90000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'penumbra',        name = 'Penumbra',                      brand = 'Maibatsu',        price = 22000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 70},
    { model = 'penumbra2',       name = 'Penumbra FF',                   brand = 'Maibatsu',        price = 30000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'rapidgt',         name = 'Rapid GT',                      brand = 'Dewbauchee',      price = 86000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 100},
    { model = 'rapidgt2',        name = 'Rapid GT Convertible',          brand = 'Dewbauchee',      price = 92000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'raptor',          name = 'Raptor',                        brand = 'BF',              price = 90000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'revolter',        name = 'Revolter',                      brand = 'Ubermacht',       price = 95000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'ruston',          name = 'Ruston',                        brand = 'Hijak',           price = 130000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'schafter3',       name = 'Schafter V12',                  brand = 'Benefactor',      price = 35000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'schlagen',        name = 'Schlagen GT',                   brand = 'Benefactor',      price = 160000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'schwarzer',       name = 'Schwartzer',                    brand = 'Benefactor',      price = 47000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'seven70',         name = 'Seven-70',                      brand = 'Dewbauchee',      price = 140000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'specter',         name = 'Specter',                       brand = 'Dewbauchee',      price = 160000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 80},
    { model = 'streiter',        name = 'Streiter',                      brand = 'Benefactor',      price = 40000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sugoi',           name = 'Sugoi',                         brand = 'Dinka',           price = 85000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sultan',          name = 'Sultan',                        brand = 'Karin',           price = 50000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sultan2',         name = 'Sultan Custom',                 brand = 'Karin',           price = 55000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'surano',          name = 'Surano',                        brand = 'Benefactor',      price = 80000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tropos',          name = 'Tropos Rallye',                 brand = 'Lampadati',       price = 65000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'verlierer2',      name = 'Verlierer',                     brand = 'Bravado',         price = 90500,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'vstr',            name = 'V-STR',                         brand = 'Albany',          price = 80000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'italirsx',        name = 'Itali RSX',                     brand = 'Progen',          price = 260000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'zr350',           name = 'ZR350',                         brand = 'Annis',           price = 38000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'calico',          name = 'Calico GTF',                    brand = 'Karin',           price = 39000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'futo2',           name = 'Futo GTX',                      brand = 'Karin',           price = 39000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'euros',           name = 'Euros',                         brand = 'Annis',           price = 80000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'jester4',         name = 'Jester RR',                     brand = 'Dinka',           price = 240000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'remus',           name = 'Remus',                         brand = 'Annis',           price = 48000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'comet6',          name = 'Comet S2',                      brand = 'Pfister',         price = 230000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'growler',         name = 'Growler',                       brand = 'Pfister',         price = 205000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'vectre',          name = 'Vectre',                        brand = 'Emperor',         price = 80000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cypher',          name = 'Cypher',                        brand = 'Ubermacht',       price = 155000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sultan3',         name = 'Sultan Classic Custom',         brand = 'Karin',           price = 56000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'rt3000',          name = 'RT3000',                        brand = 'Dinka',           price = 65000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sultanrs',        name = 'Sultan RS',                     brand = 'Karin',           price = 76500,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'visione',         name = 'Visione',                       brand = 'Grotti',          price = 750000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cheetah2',        name = 'Cheetah Classic',               brand = 'Grotti',          price = 195000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'omnisegt',        name = 'Omnis e-GT',                    brand = 'Obey',            price = 185000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tenf',            name = '10F',                           brand = 'Obey',            price = 185000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tenf2',           name = '10F Widebody',                  brand = 'Obey',            price = 215000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'corsita',         name = 'Corsita',                       brand = 'Lampadati',       price = 90000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'coureur',         name = 'La Coureuse',                   brand = 'Penaud',          price = 199000,  category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'panthere',        name = 'Panthere',                      brand = 'Toundra',         price = 55000,   category = 'sports',         type = 'automobile', shop = 'pdm' ,referral = 20},

    --- Super (7)
    { model = 'adder',           name = 'Adder',                         brand = 'Truffade',        price = 280000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'autarch',         name = 'Autarch',                       brand = 'Overflod',        price = 224000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'banshee2',        name = 'Banshee 900R',                  brand = 'Bravado',         price = 120000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'bullet',          name = 'Bullet',                        brand = 'Vapid',           price = 120000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cheetah',         name = 'Cheetah',                       brand = 'Grotti',          price = 214000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'cyclone',         name = 'Cyclone',                       brand = 'Coil',            price = 300000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'entity2',         name = 'Entity XXR',                    brand = 'Overflod',        price = 164000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'entityxf',        name = 'Entity XF',                     brand = 'Overflod',        price = 180000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'emerus',          name = 'Emerus',                        brand = 'Progen',          price = 220000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'fmj',             name = 'FMJ',                           brand = 'Vapid',           price = 125000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'furia',           name = 'Furia',                         brand = 'Grotti',          price = 230000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gp1',             name = 'GP1',                           brand = 'Progen',          price = 110000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'infernus',        name = 'Infernus',                      brand = 'Pegassi',         price = 235000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'italigtb',        name = 'Itali GTB',                     brand = 'Progen',          price = 170000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'italigtb2',       name = 'Itali GTB Custom',              brand = 'Progen',          price = 250000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'krieger',         name = 'Krieger',                       brand = 'Benefactor',      price = 222000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'le7b',            name = 'RE-7B',                         brand = 'Annis',           price = 260000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'nero',            name = 'Nero',                          brand = 'Truffade',        price = 200000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'nero2',           name = 'Nero Custom',                   brand = 'Truffade',        price = 260000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'osiris',          name = 'Osiris',                        brand = 'Pegassi',         price = 220000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'penetrator',      name = 'Penetrator',                    brand = 'Ocelot',          price = 130000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'pfister811',      name = '811',                           brand = 'Pfister',         price = 220000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20 },
    { model = 'prototipo',       name = 'X80 Proto',                     brand = 'Grotti',          price = 235000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20 },
    { model = 'reaper',          name = 'Reaper',                        brand = 'Pegassi',         price = 100000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 's80',             name = 'S80RR',                         brand = 'Annis',           price = 205000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sc1',             name = 'SC1',                           brand = 'Ubermacht',       price = 90000,   category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sheava',          name = 'ETR1',                          brand = 'Emperor',         price = 220000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 't20',             name = 'T20',                           brand = 'Progen',          price = 1650000, category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'taipan',          name = 'Taipan',                        brand = 'Cheval',          price = 1850000, category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tempesta',        name = 'Tempesta',                      brand = 'Pegassi',         price = 120000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tezeract',        name = 'Tezeract',                      brand = 'Pegassi',         price = 220000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'thrax',           name = 'Thrax',                         brand = 'Truffade',        price = 180000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tigon',           name = 'Tigon',                         brand = 'Lampadati',       price = 240000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'turismor',        name = 'Turismo R',                     brand = 'Grotti',          price = 140000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tyrant',          name = 'Tyrant',                        brand = 'Overflod',        price = 2100000, category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'tyrus',           name = 'Tyrus',                         brand = 'Progen',          price = 230000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'vacca',           name = 'Vacca',                         brand = 'Pegassi',         price = 105000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'vagner',          name = 'Vagner',                        brand = 'Dewbauchee',      price = 1660000, category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'voltic',          name = 'Voltic',                        brand = 'Coil',            price = 120000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'xa21',            name = 'XA-21',                         brand = 'Ocelot',          price = 180000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'zentorno',        name = 'Zentorno',                      brand = 'Pegassi',         price = 340000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'zorrusso',        name = 'Zorrusso',                      brand = 'Pegassi',         price = 277000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'deveste',         name = 'Deveste',                       brand = 'Principe',        price = 234000,  category = 'super',          type = 'automobile', shop = 'pdm' ,referral = 20},

    --- Motorcycles (8)
    { model = 'akuma',           name = 'Akuma',                         brand = 'Dinka',           price = 55000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'avarus',          name = 'Avarus',                        brand = 'LCC',             price = 20000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'bagger',          name = 'Bagger',                        brand = 'WMC',             price = 13500,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'bati',            name = 'Bati 801',                      brand = 'Pegassi',         price = 24000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'bati2',           name = 'Bati 801RR',                    brand = 'Pegassi',         price = 19000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'bf400',           name = 'BF400',                         brand = 'Nagasaki',        price = 22000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'carbonrs',        name = 'Carbon RS',                     brand = 'Nagasaki',        price = 22000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'chimera',         name = 'Chimera',                       brand = 'Nagasaki',        price = 21000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'cliffhanger',     name = 'Cliffhanger',                   brand = 'Western',         price = 28500,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'daemon',          name = 'Daemon',                        brand = 'WMC',             price = 14000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'daemon2',         name = 'Daemon Custom',                 brand = 'Western',         price = 23000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'defiler',         name = 'Defiler',                       brand = 'Shitzu',          price = 30000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'deathbike',       name = 'Deathbike Apocalypse',          brand = 'WMC',             price = 30000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20 },
    { model = 'diablous',        name = 'Diablous',                      brand = 'Principe',        price = 30000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'diablous2',       name = 'Diablous Custom',               brand = 'Principe',        price = 38000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'double',          name = 'Double-T',                      brand = 'Dinka',           price = 28000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'enduro',          name = 'Enduro',                        brand = 'Dinka',           price = 5500,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'esskey',          name = 'Esskey',                        brand = 'Pegassi',         price = 12000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'faggio',          name = 'Faggio Sport',                  brand = 'Pegassi',         price = 2000,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'faggio2',         name = 'Faggio',                        brand = 'Pegassi',         price = 1900,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'faggio3',         name = 'Faggio Mod',                    brand = 'Pegassi',         price = 2500,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'fcr',             name = 'FCR 1000',                      brand = 'Pegassi',         price = 5000,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'fcr2',            name = 'FCR 1000 Custom',               brand = 'Pegassi',         price = 19000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'gargoyle',        name = 'Gargoyle',                      brand = 'Western',         price = 32000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'hakuchou',        name = 'Hakuchou',                      brand = 'Shitzu',          price = 17000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'hakuchou2',       name = 'Hakuchou Drag',                 brand = 'Shitzu',          price = 45000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'hexer',           name = 'Hexer',                         brand = 'LCC',             price = 16000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'innovation',      name = 'Innovation',                    brand = 'LCC',             price = 33500,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'lectro',          name = 'Lectro',                        brand = 'Principe',        price = 28000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'manchez',         name = 'Manchez',                       brand = 'Maibatsu',        price = 8300,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'nemesis',         name = 'Nemesis',                       brand = 'Principe',        price = 20000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'nightblade',      name = 'Nightblade',                    brand = 'WMC',             price = 23000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'pcj',             name = 'PCJ-600',                       brand = 'Shitzu',          price = 15000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'ratbike',         name = 'Rat Bike',                      brand = 'Western',         price = 3000,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'ruffian',         name = 'Ruffian',                       brand = 'Pegassi',         price = 25000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'sanchez',         name = 'Sanchez Livery',                brand = 'Maibatsu',        price = 5300,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'sanchez2',        name = 'Sanchez',                       brand = 'Maibatsu',        price = 5300,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'sanctus',         name = 'Sanctus',                       brand = 'LCC',             price = 35000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'sovereign',       name = 'Sovereign',                     brand = 'WMC',             price = 8000,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'stryder',         name = 'Stryder',                       brand = 'Nagasaki',        price = 50000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'thrust',          name = 'Thrust',                        brand = 'Dinka',           price = 22000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'vader',           name = 'Vader',                         brand = 'Shitzu',          price = 7200,    category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'vindicator',      name = 'Vindicator',                    brand = 'Dinka',           price = 19000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'vortex',          name = 'Vortex',                        brand = 'Pegassi',         price = 31000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'wolfsbane',       name = 'Wolfsbane',                     brand = 'Western',         price = 14000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'zombiea',         name = 'Zombie Bobber',                 brand = 'Western',         price = 28000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'zombieb',         name = 'Zombie Chopper',                brand = 'Western',         price = 27000,   category = 'motorcycles',    type = 'bike',       shop = 'pdm' ,referral = 20},

    --- Off-Road (9)
    { model = 'bfinjection',     name = 'Bf Injection',                  brand = 'Annis',           price = 9000,    category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'bifta',           name = 'Bifta',                         brand = 'Annis',           price = 15500,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'blazer',          name = 'Blazer',                        brand = 'Annis',           price = 7500,    category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'blazer3',         name = 'Blazer Hot Rod',                brand = 'Nagasaki',        price = 7000,    category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'blazer4',         name = 'Blazer Sport',                  brand = 'Annis',           price = 9250,    category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'brawler',         name = 'Brawler',                       brand = 'Annis',           price = 40000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'caracara2',       name = 'Caracara 4x4',                  brand = 'Vapid',           price = 80000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'dubsta3',         name = 'Dubsta 6x6',                    brand = 'Annis',           price = 34000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'everon',          name = 'Everon',                        brand = 'Karin',           price = 60000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'freecrawler',     name = 'Freecrawler',                   brand = 'Canis',           price = 24000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'hellion',         name = 'Hellion',                       brand = 'Annis',           price = 38000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'kalahari',        name = 'Kalahari',                      brand = 'Canis',           price = 14000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'kamacho',         name = 'Kamacho',                       brand = 'Canis',           price = 50000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'mesa3',           name = 'Mesa Merryweather',             brand = 'Canis',           price = 400000,  category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'outlaw',          name = 'Outlaw',                        brand = 'Nagasaki',        price = 15000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'rancherxl',       name = 'Rancher XL',                    brand = 'Declasse',        price = 24000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'rebel2',          name = 'Rebel',                         brand = 'Vapid',           price = 20000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'riata',           name = 'Riata',                         brand = 'Vapid',           price = 380000,  category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sandking',        name = 'Sandking XL',                   brand = 'Vapid',           price = 25000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'sandking2',       name = 'Sandking SWB',                  brand = 'Vapid',           price = 38000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'trophytruck',     name = 'Trophy Truck',                  brand = 'Vapid',           price = 60000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'vagrant',         name = 'Vagrant',                       brand = 'Maxwell',         price = 50000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'verus',           name = 'Verus',                         brand = 'Dinka',           price = 20000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'yosemite3',       name = 'Yosemite Rancher',              brand = 'Declasse',        price = 425000,  category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'mesa',            name = 'Mesa',                          brand = 'Canis',           price = 12000,   category = 'offroad',        type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'guardian',        name = 'Guardian',                      brand = 'Vapid',           price = 30000,   category = 'offroad',     type = 'automobile', shop = 'truck' ,referral = 20},

    --- Utility (11)

    
    --- Vans (12)
    { model = 'bison',           name = 'Bison',                         brand = 'Bravado',         price = 18000,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'bobcatxl',        name = 'Bobcat XL Open',                brand = 'Vapid',           price = 13500,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'burrito3',        name = 'Burrito',                       brand = 'Declasse',        price = 4000,    category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'gburrito2',       name = 'Burrito Custom',                brand = 'Declasse',        price = 11500,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'rumpo',           name = 'Rumpo',                         brand = 'Bravado',         price = 9000,    category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'journey',         name = 'Journey',                       brand = 'Zirconium',       price = 6500,    category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'minivan',         name = 'Minivan',                       brand = 'Vapid',           price = 7000,    category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'minivan2',        name = 'Minivan Custom',                brand = 'Vapid',           price = 10000,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'paradise',        name = 'Paradise',                      brand = 'Bravado',         price = 9000,    category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'rumpo3',          name = 'Rumpo Custom',                  brand = 'Bravado',         price = 19500,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'speedo',          name = 'Speedo',                        brand = 'Vapid',           price = 10000,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'surfer',          name = 'Surfer',                        brand = 'BF',              price = 9000,    category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'youga3',          name = 'Youga Classic 4x4',             brand = 'Bravado',         price = 15000,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'youga',           name = 'Youga',                         brand = 'Bravado',         price = 8000,    category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'youga2',          name = 'Youga Classic',                 brand = 'Bravado',         price = 14500,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'moonbeam',        name = 'Moonbeam',                      brand = 'Declasse',        price = 13000,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    { model = 'moonbeam2',       name = 'Moonbeam Custom',               brand = 'Declasse',        price = 15000,   category = 'vans',           type = 'automobile', shop = 'pdm' ,referral = 20},
    --- Cycles (13)
    { model = 'bmx',             name = 'BMX',                           brand = 'Bike',            price = 160,     category = 'cycles',         type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'cruiser',         name = 'Cruiser',                       brand = 'Bike',            price = 510,     category = 'cycles',         type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'fixter',          name = 'Fixter',                        brand = 'Bike',            price = 225,     category = 'cycles',         type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'scorcher',        name = 'Scorcher',                      brand = 'Bike',            price = 280,     category = 'cycles',         type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'tribike',         name = 'Whippet Race Bike',             brand = 'Bike',            price = 500,     category = 'cycles',         type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'tribike2',        name = 'Endurex Race Bike',             brand = 'Bike',            price = 700,     category = 'cycles',         type = 'bike',       shop = 'pdm' ,referral = 20},
    { model = 'tribike3',        name = 'Tri-Cycles Race Bike',          brand = 'Bike',            price = 520,     category = 'cycles',         type = 'bike',       shop = 'pdm' ,referral = 20},
    --- Boats (14)
    { model = 'longfin',         name = 'Longfin',                       brand = 'Shitzu',          price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'tug',             name = 'Tug',                           brand = 'Buckingham',      price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'toro',            name = 'Toro',                          brand = 'Lampadati',       price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'toro2',           name = 'Toro Yacht',                    brand = 'Lampadati',       price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'speeder',         name = 'Speeder',                       brand = 'Pegassi',         price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'speeder2',        name = 'Speeder Yacht',                 brand = 'Pegassi',         price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'tropic',          name = 'Tropic',                        brand = 'Shitzu',          price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'tropic2',         name = 'Tropic Yacht',                  brand = 'Shitzu',          price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'suntrap',         name = 'Suntrap',                       brand = 'Shitzu',          price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'squalo',          name = 'Squalo',                        brand = 'Shitzu',          price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'seashark',        name = 'Seashark',                      brand = 'Speedophile',     price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'seashark3',       name = 'Seashark Yacht',                brand = 'Speedophile',     price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'marquis',         name = 'Marquis',                       brand = 'Dinka',           price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'jetmax',          name = 'Jetmax',                        brand = 'Shitzu',          price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'dinghy',          name = 'Dinghy 2-Seater',               brand = 'Nagasaki',        price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'dinghy2',         name = 'Dinghy 4-Seater',               brand = 'Nagasaki',        price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'dinghy3',         name = 'Dinghy (Heist)',                brand = 'Nagasaki',        price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    { model = 'dinghy4',         name = 'Dinghy Yacht',                  brand = 'Nagasaki',        price = 40000,   category = 'boats',          type = 'boat',       shop = 'boats' ,referral = 20},
    --- Helicopters (15)
    { model = 'conada',          name = 'Conada',                        brand = 'Buckingham',      price = 115000,  category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'havok',           name = 'Havok',                         brand = 'Nagasaki',        price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'volatus',         name = 'Volatus',                       brand = 'Buckingham',      price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'supervolito2',    name = 'SuperVolito Carbon',            brand = 'Buckingham',      price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'supervolito',     name = 'SuperVolito',                   brand = 'Buckingham',      price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'swift2',          name = 'Swift Deluxe',                  brand = 'Buckingham',      price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'swift',           name = 'Swift',                         brand = 'Buckingham',      price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'maverick',        name = 'Maverick',                      brand = 'Buckingham',      price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'frogger',         name = 'Frogger',                       brand = 'Maibatsu',        price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'frogger2',        name = 'Frogger',                       brand = 'Maibatsu',        price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    { model = 'buzzard2',        name = 'Buzzard',                       brand = 'Nagasaki',        price = 52000,   category = 'helicopters',    type = 'heli',       shop = 'air' ,referral = 20},
    --- Planes (16)
    { model = 'alphaz1',         name = 'Alpha-Z1',                      brand = 'Buckingham',      price = 45000,   category = 'planes',         type = 'plane',      shop = 'air' ,referral = 20},
    { model = 'nimbus',          name = 'Nimbus',                        brand = 'Buckingham',      price = 45000,   category = 'planes',         type = 'plane',      shop = 'air' ,referral = 20},
    { model = 'luxor2',          name = 'Luxor Deluxe',                  brand = 'Buckingham',      price = 45000,   category = 'planes',         type = 'plane',      shop = 'air' ,referral = 20},
    { model = 'vestra',          name = 'Vestra',                        brand = 'Buckingham',      price = 45000,   category = 'planes',         type = 'plane',      shop = 'air' ,referral = 20},
    { model = 'shamal',          name = 'Shamal',                        brand = 'Buckingham',      price = 45000,   category = 'planes',         type = 'plane',      shop = 'air' ,referral = 20},
    { model = 'luxor',           name = 'Luxor',                         brand = 'Buckingham',      price = 45000,   category = 'planes',         type = 'plane',      shop = 'air' ,referral = 20},

    -- Emergency
    { model = 'riot',            name = 'Police Riot',                   brand = 'Brute',           price = 10,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},
    { model = 'riot2',           name = 'RCV',                           brand = 'Brute',           price = 20,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},
    { model = 'pbus',            name = 'Police Prison Bus',             brand = 'Vapid',           price = 30,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},
    { model = 'police',          name = 'Police Cruiser',                brand = 'Vapid',           price = 40,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},
    { model = 'police2',         name = 'Police Buffalo',                brand = 'Vapid',           price = 50,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},
    { model = 'police3',         name = 'Police Interceptor',            brand = 'Vapid',           price = 60,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},
    { model = 'police4',         name = 'Unmarked Cruiser',              brand = 'Vapid',           price = 70,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},
    { model = 'policeb',         name = 'Police Bike',                   brand = 'Vapid',           price = 80,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},
    { model = 'polmav',          name = 'Maverick',                      brand = 'Buckingham',      price = 90,  category = 'emergency',      type = 'automobile', shop = 'emergency' ,referral = 20},

}

Last updated 10 days ago

Page cover image