BOLOs

Details

Below, you will find detailed configuration for bolos.

Configuration file

config/bolos.lua
return {
    ---@type boolean
    enabled = true,

    -- if defined, it will enable bolos for certain groups
    -- if set to false, it will take in account above and enable bolos for everyone
    -- who uses dispatch
    ---@type table<string, boolean> | false
    enabledFor = false,

    -- which bolo types are available
    ---@type boolean
    personType = true,

    -- which bolo types are available
    ---@type boolean
    vehicleType = true,
}

Detailed types information

enabled boolean

Defines if BOLOs page is enabled in general.

enabledFor table<string, boolean> | false

If this set to false and enabled is set to true, bolos page will be enabled for everyone. Otherwise you can set a table for example:

  enabledFor = {
    ['police'] = true
  }

In this example, BOLOs page will be shown only to police.

personType boolean

Defines if the person BOLO type is available.

vehicleType boolean

Defines if the vehicle BOLO type is available.

Copyright © 2025 Felis Development