Karma Developments
DiscordStore
  • Welcome
  • Script Guides
    • Karma Developments Clothing System
      • Install
      • How to change clothing images?
    • Karma Developments Dispatch System
      • Install
      • How to add new Job to Dispatch
      • How to add alerts in my other scripts?
    • Karma Developments Server-Side Graphics Overhaul System
      • Install
      • How to fix grass on roads?
      • Getting crashs?
    • Karma Developments NPC Dialog System
      • Install
      • How to add the images of items at STORES?
    • Karma Developments Garage & Impounds System
      • Install
      • How to create a new garage?
      • How to show vehicles at my qb-phone?
    • Karma Developments Tablet System
      • Install
      • How to add a App UI in Tablet?
  • ABOUT
    • All Links
Powered by GitBook
On this page
  1. Script Guides
  2. Karma Developments Garage & Impounds System

Install

Karma Developments Garages & Impounds İnstallation.

PreviousKarma Developments Garage & Impounds SystemNextHow to create a new garage?

Last updated 15 days ago

Setup

  1. First, go to and download the purchased files.

  2. Second, download the 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.

https://keymaster.fivem.net/
karma-interaction
Page cover image