Starter Vehicle Selector

Starter Vehicle Selector

$14.99

Add to Basket

Nexora Starter Vehicle Selector

---

Preview Video ; https://www.youtube.com/watch?v=bNHr1Ul9sTA



Features

  • Multiple vehicles 

  • easy to edit

  • easy to use and setup

  • low resom


Config 

```

Config = {
    Debug = true,

    -- Framework: 'auto', 'ESX', 'QBCORE', 'QBOX'
    Framework = 'auto',

    -- Framework-specific DB settings. Adjust to match your schema if needed.
    Frameworks = {
        ESX = {
            vehicleTable = 'owned_vehicles',
            ownerColumn = 'owner',
            plateColumn = 'plate',
            vehicleColumn = 'vehicle',
            typeColumn = 'type',
            storedColumn = 'stored',
            vehicleType = 'car',
            storedValue = 1
        },
        QBCORE = {
            vehicleTable = 'player_vehicles',
            ownerColumn = 'citizenid',
            plateColumn = 'plate',
            vehicleColumn = 'vehicle',
            licenseColumn = 'license',
            hashColumn = 'hash',
            modsColumn = 'mods',
            stateColumn = 'state',
            garageColumn = 'garage',
            fuelColumn = 'fuel',
            engineColumn = 'engine',
            bodyColumn = 'body',
            insertColumns = {
                'license', 'citizenid', 'plate', 'vehicle', 'hash', 'mods', 'state', 'garage', 'fuel', 'engine', 'body'
            },
            insertValues = {
                mods = '{}',
                state = 1,
                garage = 'pillboxgarage', -- change to your default garage id if needed
                fuel = 100,
                engine = 1000,
                body = 1000
            }
        },
        QBOX = {
            vehicleTable = 'player_vehicles',
            ownerColumn = 'citizenid',
            plateColumn = 'plate',
            vehicleColumn = 'vehicle',
            licenseColumn = 'license',
            hashColumn = 'hash',
            modsColumn = 'mods',
            stateColumn = 'state',
            garageColumn = 'garage',
            fuelColumn = 'fuel',
            engineColumn = 'engine',
            bodyColumn = 'body',
            insertColumns = {
                'license', 'citizenid', 'plate', 'vehicle', 'hash', 'mods', 'state', 'garage', 'fuel', 'engine', 'body'
            },
            insertValues = {
                mods = '{}',
                state = 1,
                garage = 'pillboxgarage', -- change to your default garage id if needed
                fuel = 100,
                engine = 1000,
                body = 1000
            }
        }
    },

    MarkerLocations = {
        {x = -773.7112, y = 302.3170, z = 85.7199},
    },
    ShowroomVehicles = {
            {model = 'sentinel', name = "Ubermacht Sentinel"},
            {model = 'blista', name = "Dinka Blista"},
            {model = 'asea', name = "Declasse Asea"}
    },
    ShowroomLocation = vector4(1604.0853, 3225.3677, 40.4115, 250.0),
    CargoPlaneLocation = vector4(1532.5743, 3207.4810, 40.4115, 284.0520),
    VehicleSpacing = 5.0 
```