📰Configuration

Config                           = {}

Config.TestDriveCoords           = vector4(-1725.7469482422, -2922.7265625, 13.944415092468, 237.11141967773)
Config.TestDriveTime             = 30 -- seconds

Config.UseInternelPaymentForJobs = true

Config.PlateLetters              = 3
Config.PlateNumbers              = 3
Config.PlateUseSpace             = true

Config.Shops                     = {
    {
        type = "job",          -- "showroom" - "buy" - "job"
        jobName = "cardealer", -- works only if type = "job"
        coords = vector4(-57.236755371094, -1099.1254882813, 25.422477722168, 13.710363388062),
        showcase = vector4(-45.03783416748, -1096.1958007813, 26.422334671021, 98.504615783691),
        spawn = vector4(-29.324239730835, -1087.2175292969, 26.499809265137, 335.44729614258),
        name = "Luxury Dealership",
        target = true,
        ped = {
            model = "a_m_m_hasjew_01",
            enable = true, -- false if you dont want to use ped
        },
        blip = {
            type   = 326,
            color  = 2,
            scale  = 0.8,
            label  = "Luxury vehicle shop",
            enable = true,
        },
        vehicles = {
            -- ### Compacts ### --
            { price = 10,    name = "blista",    label = "Blista",             category = "compacts" },

            -- ### Coupes ### --
            { price = 24000, name = "cogcabrio", label = "Cognoscenti Cabrio", category = "coupes" },

            -- ## Motorcycle ## --
            { price = 24000, name = "akuma",     label = "Akuma",              category = "moto" },

            -- ## Muscle ## --
            { price = 24000, name = "Blade",     label = "Blade",              category = "muscle" },

            -- ## Offroad ## --
            { price = 24000, name = "bifta",     label = "Bifta",              category = "offroad" },

            -- ## Sedans ## --
            { price = 24000, name = "Emperor",   label = "emperor",            category = "sedans" },

            -- ## Sports ## --
            { price = 24000, name = "elegy2",    label = "Elegy",              category = "sports" },

            -- ## Sports Classic ## --
            { price = 24000, name = "coquette2", label = "Coquette Classic",   category = "sportsclassic" },

            -- ## super ## --
            { price = 24000, name = "zentorno",  label = "Zentorno",           category = "super" },

            -- ## suvs ## --
            { price = 24000, name = "baller2",   label = "Baller",             category = "suvs" },

            -- ## vans ## --
            { price = 24000, name = "Bison",     label = "bison",              category = "vans" },

            -- ## VIP ## --
            { price = 24000, name = "adder",     label = "Adder",              category = "vip",          vip = true },

        }
    },
}

lib.locale()

If you dont want to use the selling payment method that our script provides to disalbe it do the following

Config.UseInternelPaymentForJobs = false

Types of shops

type = "showroom",          -- "showroom" - "buy" - "job"
  1. Showroom

    • if the type is set too showroom all the players have access to the shop but they cant buy the vehicles they can only test drive it and other things

  2. Buy

    • if the type is set too buy all the players has the access to the shop and they can buy vehicles

  3. Job

    • if the type is set too job only the players that have the job has the access to the shop and can buy vehicles and sell it to other players

Use the key E insead of tareting

target = false

Use marker instead of the ped

ped = {
    model = "a_m_m_hasjew_01",
    enable = false,
}

Change Test drive time

Config.TestDriveTime = 120 -- time in seconds so if you want 1 minute you put 60

IMPORTANT: IF YOU CHANGE THE DEALERSHIP NAME BE CAREFULL BECAUSE IF YOU THE DEALERSHIP HAS BOUGHT ANY VEHICLES OR SOLD ANY VEHICLES YOU NEED TO CHANGE THE DEALERSHIP NAME IN THE DATABASE TOO

Last updated