rk_propad

Installation

  1. Install Dependencies

  • Any Inventory script.

  • Any vehicle key script.

Compatibility

  • All bridge files relating to inventories and vehicle keys, are unescrowed allowing you to add support for whatever resources you have. Out the box it supports

  • mk_vehiclekeys, mrnewb, wasabi_carlock, qs-vehiclekeys.

  • ox_inventory, qb-inventory, qs-advancedinventory

  • to add support go over to rk_propad/modules/bridge/%

Configuration

return {
    Locale = "en", -- You MUST set your own locale in the locales folder if your not using english.

    ServerLogo = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/7e4755e5cc73ea64efbf47acf1995fa7.png",
    
    carBrands = {
        {
            name = "Bravado",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Bravado-GTAO-Logo.webp"
        },
        {
            name = "Karin",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Karin-GTAO-Logo.webp"
        },
        {
            name = "Vapid",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Vapid-GTAO-Logo.png"
        },
        {
            name = "Benefactor",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Benefactor-GTAO-Logo.png"
        },
        {
            name = "Ubermacht",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Revolter-GTAV-detail.png"
        },
        {
            name = "Obey",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Obey-Logo-Badge-GTAO.png"
        },
        {
            name = "Coil",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Coil-GTAO-Logo.webp"
        },
        {
            name = "Cheval",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Cheval-Logo-Badge-GTAO.webp"
        },
        {
            name = "Declasse",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Declasse-GTAO-Logo-Old.webp"
        },
        {
            name = "Dewbauchee",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Dewbauchee-GTAO-Logo.webp"
        },
        {
            name = "Lampadati",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Lampadati-Logo-GTAO.webp"
        },
        {
            name = "Pegassi",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Pegassi-GTAO-Logo(1).webp"
        },
        {
            name = "Pfister",
            image = "https://r2.fivemanage.com/kVIDhrkdlniwh3TQVasjF/Pfister-GTAO-Logo.webp"
        }
    },

    NoBrandFound = true, -- There will be a card at the bottom of the tablet for cars with no brands found. If you don't want this, set to false.
    
    HackDuration = {
        ProgramKey = 10, -- Duration for programming keys (seconds)
        EraseKeys = 10   -- Duration for erasing keys (seconds)
    },
    
    Tabs = {
        programkey = true,  -- Enable/disable program key tab
        erasekey = true,     -- Enable/disable erase key tab
        diagnostics = true   -- Enable/disable vehicle diagnostics tab
    },
    
    Notify = function(title, message, type)
        lib.notify({
            title = title,
            description = message,
            type = type or 'info',
            position = 'top-right',
        })
    end
}

Last updated