bcs_licensemanager

Configure in config.sync.lua

Make sure that all properties in system are set to false except bcs_licensemanager.

Config.Licenses now SyncSettings.Licenses

Configure in Database

  1. open your database

  2. open the myemergency_licenses table

  3. input your data for fromsystem, string_key, name

    1. string_key must be the key from bcs_licensemanager (e.g. id_card, boat …)

    2. fromsystem is always police!!

SQL-Queries

Select Query

SELECT * FROM myemergency_licenses;

Insert Query

INSERT INTO `myemergency_licenses`(
    `fromsystem`
    , `string_key`
    , `name`
) VALUES (
    'police'
    ,'id_card'
    ,'ID Card'
);

Result

Your resulted table should look like this:

Last updated