bcs_licensemanager
Configure in config.sync.lua
Make sure that all properties in system are set to false except bcs_licensemanager.
Configure in Database
open your database
open the myemergency_licenses table
input your data for fromsystem, string_key, name
string_key must be the key from bcs_licensemanager (e.g. id_card, boat …)
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