Installation
Download
Before starting, you must log in to the CFX portal to download the asset. You will be able to download it as many times as you want on the official CFX page. Just as you download it the first time, you will also download it multiple times in the future to get updates.
Loggin in to the CFX Portal
First, log in to the official CFX portal by clicking here.

Dependencies
This script require screenshot-basic to work: https://github.com/citizenfx/screenshot-basic
Add Resources
Once you have downloaded the script and dependencies (if necessary), you must add them to your server's server.cfg file. This resource must always be started below your framework and inventory. Otherwise, functionality issues or critical errors may occur.
# Default & Standalone Resources
# ------------------------------
ensure spawnmanager
ensure oxmysql
ensure bob74_ipl
# ESX Legacy Core
# ---------------
ensure [core]
ensure [inventory]
ensure screenshot-basic
ensure bit-policemdt
SQL Query
Use the following sql query in your database:
CREATE TABLE IF NOT EXISTS `bit_policemdt` (
`identifier` varchar(50) NOT NULL,
`name` varchar(50) NOT NULL,
`photo` varchar(100) DEFAULT NULL,
`dangerous` int(5) DEFAULT 0,
`searched` int(5) DEFAULT 0,
`date` varchar(50) NOT NULL
);
CREATE TABLE IF NOT EXISTS `bit_policemdt_fines` (
`identifier` varchar(50) NOT NULL,
`fine` varchar(50) NOT NULL
);
Restart
Once you have completed these steps, restart your server and the installation will be complete.
IMPORTANT · The name of the script folder must not be changed, otherwise the resource will not work correctly. · Do not edit the encrypted files in any way.
Last updated