Mosoto Scripts
WebsiteDiscordYouTubeGitHubInstagram
  • 📖Introduction
  • 🔒FiveM Escrow
  • 📱Fingerprint Scanner
    • Installation
    • Common issues
Powered by GitBook
On this page
  • STEP 1 - Dependencies
  • STEP 2 - Resource order
  • STEP 3 - Database
  • STEP 4 - Modifications
  • STEP 5 - Configuration
  • STEP 6 - Not working?
  1. Fingerprint Scanner

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 - Dependencies

Dependencies are important extensions without which the script can't work.

  • ox_lib

STEP 2 - Resource order

You MUST start the resource below your core (es_extended/qb-core/ox-core)!

SERVER.CFG
start ox_lib
start es_extended/qb-core/ox_core
start qb-target/qtarget/ox_target/bt-target/sleepless_interaction
start mst_fpscanner

STEP 3 - Database

['fpscanner'] = {
    label = 'Fingerprint Scanner',
    weight = 1000,
    stack = false,
    client = {
        image = 'fpscanner.png'
    }
}
fpscanner = {
    label = 'Fingerprint Scanner',
    weight = 500,
    stack = false,
    close = true
}
INSERT INTO `items` (name, label) VALUES
    ('fpscanner', 'Fingerprint Scanner')
;

STEP 4 - Modifications

Add the code below here -> ox_inventory/modules/items/client.lua

Item('fpscanner', function()
    TriggerEvent('mst_fpscanner:core:open', true);
end);

STEP 5 - Configuration

Carefully look at the configurations and make them according to your server.

STEP 6 - Not working?

We hope you don't get to this step, but if you do, you're welcome to our Discord where you can open a ticket for support. :)

-> Check it

Last updated 1 month ago

📱
config.lua
Configurations