Configuration

  1. Config = {}
    
    -- Framework: "esx" / "qbox"
    Config.Framework = "esx"
    
    -- Fixed 3-character plate prefix
    Config.PlatePrefix = "MAD"
    
    Config.Ped = {
        model = 'cs_bankman',
        coords = vec4(-56.9, -1096.7, 26.4, 70.0),
        blipName = "Andi"
    }
    
    -- Vehicle spawn location
    Config.VehicleSpawn = vec4(-48.1339, -1116.6262, 26.4340, 4.7797) 
    
    -- Item name for vehicle coupon
    Config.vehicleCouponItem = "vehicle_coupon" 
    
    -- Vehicle list (spawnName, label)
    Config.Vehicles = {
        {label = "Sultan RS", model = "sultanrs"},
        {label = "Elegy Retro", model = "elegy"},
        {label = "Comet S2", model = "comet6"}
    }
    
    Config.Notify = {
        title = 'Vehicle Claim',
        vehicleCouponItem = 'You do not have a vehicle coupon in your inventory.',
    }
    
    Config.Target = {
        label = 'Claim Your Vehicle',
        description = 'Claim this vehicle',
    }

Last updated