Installation

If you aren't familiar with programming or just you don't know how to set up the script, we present our installation guide which is as comprehensive as possible so you don't have any difficulties.


STEP 1 - Download

  • Download mst_fpscanner and mst_bridge from Portal.

STEP 2 - Dependencies

The script requires several dependencies to function properly.

Required:

STEP 3 - Resources order

You MUST start the resource below your core and bridge!

SERVER.CFG
ensure ox_lib
ensure es_extended/qb-core/qbx_core
ensure qb-target/ox_target
ensure screenshot-basic
ensure mst_bridge
ensure mst_fpscanner

STEP 4 - Database

  • Add the images from the inventory_images folder inside mst_fpscanner to your inventory system’s image directory.

DELETE FROM items WHERE name = 'mobilescanner';
DELETE FROM items WHERE name = 'staticscanner';

INSERT INTO `items` (`name`, `label`, `weight`) VALUES
	('mobilescanner', 'Mobile Fingerprint Scanner', 1),
	('staticscanner', 'Static Fingerprint Scanner', 1)
;

STEP 5 - Fivemanage Setup

To store each citizen's photos, we use Fivemanage as platform for them.

  1. Create an account

  2. Go to "Tokens" in the sidebar and then "Create Token"

  3. Choose a name and "Images only" type from the dropdown

  4. Finish with "Create Token"

  5. Add setr FIVEMANAGE_MEDIA_API_KEY yourToken in server.cfg below mysql_connection_string for example

  6. Copy the token you made and put it in place of yourToken

  7. Save the changes and restart your server

STEP 6 - Any other configurations?

You will also no longer have to change the framework manually, for each script, as well as the language, notifications, etc. Everything happens through the config.lua file of mst_bridge.

STEP 7 - Not working?

We hope you won’t need this step, but if you do, feel free to join our Discord and open a support ticket. :)

Last updated