Page cover

Install

Karma Developments Garages & Impounds İnstallation.

Setup

  1. First, go to https://keymaster.fivem.net/ and download the purchased files.

  2. Second, download the karma-interaction file.

  3. Third, add the export bellow into your radialmenu.

  4. Now ensure it at your server.cfg and good luck!

ensure polyzone-lib
ensure karma-interaction
ensure karma-garages
{        
        id = "publicGarage",
        displayName = "Garage",
        icon = "#vehicle-vehicleList",
        close = true,
        functiontype = "client",
        functionName = "karma-garages:openGarage",
        enableMenu = function()
            return exports["karma-garages"]:characterAtGarage() and not IsPedInAnyVehicle(PlayerPedId(), false) and not isDead
        end,
    },
    {        
        id = "publicImpound",
        displayName = "Impound",
        icon = "#vehicle-vehicleList",
        close = true,
        functiontype = "client",
        functionName = "karma-garages:openImpound",
        enableMenu = function()
            return exports["karma-garages"]:characterAtImpound() and not IsPedInAnyVehicle(PlayerPedId(), false) and not isDead
        end,
    },
    {        
        id = "publicpark",
        displayName = "Parking",
        icon = "#vehicle-parkvehicle",
        close = true,
        functiontype = "client",
        functionName = "karma-garages:parkVehicle",
        enableMenu = function()
            return exports["karma-garages"]:characterAtGarage() and IsPedInAnyVehicle(PlayerPedId(), false) and not isDead
        end,
    },

For more informations you can verify our README.md attached at karma-garagessystem.

Last updated