For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.


1

Download

Download mst_fpscanner from Portal.

3

Resources Order

SERVER.CFG
ensure es_extended/qb-core/qbx_core
ensure oxmysql
ensure ox_lib

ensure inventory
ensure phone
ensure clothing
ensure banking
ensure fuel
ensure target

ensure mst_bridge
ensure mst_fpscanner
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)
;
mobilescanner = { name = 'mobilescanner', label = 'Mobile Fingerprint Scanner', weight = 1, type = 'item', image = 'mobilescanner.png', unique = true, useable = true, shouldClose = true, description = 'A portable device used to scan fingerprints on the go' },
staticscanner = { name = 'staticscanner', label = 'Static Fingerprint Scanner', weight = 1, type = 'item', image = 'staticscanner.png', unique = true, useable = true, shouldClose = true, description = 'A stationary fingerprint scanner that can be placed in a location' },
['mobilescanner'] = {
    label = 'Mobile Fingerprint Scanner',
    weight = 1000,
    stack = false,
    close = true,
    description = 'A portable device used to scan fingerprints on the go',
    client = {
        image = 'mobilescanner.png'
    }
},

['staticscanner'] = {
    label = 'Static Fingerprint Scanner',
    weight = 2000,
    stack = false,
    close = true,
    description = 'A stationary fingerprint scanner that can be placed in a location',
    client = {
        image = 'staticscanner.png'
    }
}
5

Storage Setup

There are 2 storage options where to store your images.

  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. Go to mst_fpscanner/config and set storage = "fivemanage".

  8. Save & Restart the server

  1. Open Imgbb

  2. Sign Up

  3. Generate an API Key

  4. Add set IMGBB_API_KEY "your_key" in server.cfg below mysql_connection_string for example

  5. Copy the generated key and paste it between ""

  6. Go to mst_fpscanner/config and set storage = "imgbb".

  7. Save & Restart the server

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.

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