Configuration

Learn how to configure the resource.

Translate the resource

  1. Locate the config.lua file in the resource folder.
  2. Find the Config.Translation table.
  3. Translate the strings to your desired language.
  4. Once you're done, save the file and restart the resource.

Add new blacklisted jobs

  1. Locate the config.lua and open it.
  2. At line 13, you will see the Config.BlacklistedJobs table.
  3. Add the job name to the table, like this:
Config.BlacklistedJobs = {
    -- ... other jobs
    'police',
}
  1. Save the file and restart the resource.

Other configurations

Change ESX resource name

  1. Open the config.lua file in the resource folder.
  2. Find the Config.ESXResource variable.
  3. Change the value to your ESX resource name.

Change command names

  1. Open the config.lua file in the resource folder.
  2. Find the Config.Commands table.
  3. Change the command names to your desired values.

On this page