pScripts
  • INFORMATION
    • FiveM Asset Escrow System
    • Assets Updates
    • Discord Roles
  • Assets & Guides
    • 🏛️Banking
      • 👋Installation Guide
      • ⚙️Editable Files
      • Client Exports
      • Server Exports
    • 👨‍⚖️DOJ Job
      • 👋Installation Guide
      • ⚙️Config Files
      • Client Exports
      • Server Exports
    • 💻DOJ MDT
      • 👋Installation Guide
      • ⚙️Config Files
      • Client Exports
      • Server Exports
    • 🌿Weed Plants
      • 👋Installation Guide
      • ⚙️Config Files
      • Client Exports
      • Server Exports
    • 🚗Car Sale Job
      • 👋Installation Guide
      • ⚙️Config File
      • Client Exports
      • Server Exports
    • 📙Job Core
      • ⚙️Config File
      • Exports
    • 👮Police Job
      • 👋Installation Guide
      • ⚠️Common Issues
      • ⁉️Setup Server
      • ⚙️Config Files
      • Client Exports
        • Bodycam
        • Evidence System
        • Duty GPS
        • Interactions
        • Jail System
        • Police Objects
        • Speed Camera
        • Manage Traffic
        • Misc
      • Server Exports
        • Evidence System
        • Interactions
        • Jail System
        • Misc
    • 💻Police MDT
      • ⁉️Setup Server
      • ⚙️Config File
      • Client Exports
      • Server Exports
      • Dispatch System
    • 🚑Ambulance Job
      • 👋Installation Guide
      • ⁉️Setup Server
      • ⚙️Config Files
      • Client Exports
      • Server Exports
    • 💻Ambulance MDT
      • 👋Installation Guide
      • ⚙️Config File
      • Exports and Events
      • Dispatch System
    • 🛠️Mechanic Job
      • ⚙️Config Files
      • Mileage System
      • Nitro System
      • Lifters System
      • Misc
    • 💻Mechanic MDT
      • ⚙️Config File
      • Exports
      • Dispatch System
      • Licenses System
    • 💵Fleeca Robbery
      • 👋Installation Guide
      • ⚙️Config File
    • ⌚Jewelry Robbery
      • 👋Installation Guide
      • ⚙️Config File
    • 💇Appearance
      • ⚙️Config Files
      • Client Exports
    • 👀Hints
      • Exports
    • 👋Helper
      • Exports
    • 🔧Tuning Menu
      • Exports and Events
      • ⚙️Config Files
    • 🆔Documents
      • ⚙️Config File
      • Exports and Events
    • 📱Phone
      • ⤵️INSTALLATION
      • ⚙️CONFIG FILES
      • 📃FEATURES
      • 📱APPS
      • 📇SIM CARDS
      • 📳NOTIFICATIONS
      • 📨MESSAGES
      • 🚘GARAGES
      • 🪙CRYPTO
      • 🔪DARK CONNECT
      • ⌨️FUNCTIONS
      • 🌎LANGUAGE
      • ⚠️COMMON ISSUES
    • 🪙Casino Games
      • 🎰Slot Machine
      • 🏐Roulette
      • ♣️Poker
    • 💻GCT
      • 📨EXPORTS
    • 💻Civil MDT
      • ⤵️INSTALLATION
      • 📱APPS
      • 🏎️BOOSTING
      • 🏅ACHIEVEMENTS
      • ⚠️COMMON ISSUES
Powered by GitBook
On this page
  • GenerateFinger
  • GenerateBlood
  • GetIdentifierFromFinger
  • GetIdentifierFromBlood
  • GetPlayerFromBlood
  • GetPlayerFromFinger
  • GetBloodFromIdentifier
  • GetFingerFromIdentifier
  1. Assets & Guides
  2. Police Job
  3. Server Exports

Evidence System

GenerateFinger

Generating unique finger print id

exports['p_policejob']:GenerateFinger()

Return:

  • fingerId: string


GenerateBlood

Generating unique blood id

exports['p_policejob']:GenerateBlood()

Return:

  • bloodId: string


GetIdentifierFromFinger

Get player identifier or citizen id by finger id.

exports['p_policejob']:GetIdentifierFromFinger(fingerId)
  • fingerId: string

    • Existing finger id of player

Return:

  • identifier: string or nil


GetIdentifierFromBlood

Get player identifier or citizen id by blood id.

exports['p_policejob']:GetIdentifierFromBlood(bloodId)
  • bloodId: string

    • Existing blood id of player

Return:

  • identifier: string or nil


GetPlayerFromBlood

Get online player object by blood id.

exports['p_policejob']:GetPlayerFromBlood(bloodId)
  • bloodId: string

    • Existing blood id of player

Return:

  • data: object or nil

    • serial: string

    • type: string

    • identifier: string

GetPlayerFromFinger

Get online player object by finger id.

exports['p_policejob']:GetPlayerFromFinger(fingerId)
  • fingerid: string

    • Existing finger id of player.

Return:

  • data: object or nil

    • serial: string

    • identifier: string


GetBloodFromIdentifier

Get online player blood id from identifier / citizenid.

exports['p_policejob']:GetBloodFromIdentifier(identifier)
  • identifier: string

    • Existing identifier / citizenid of player.

Return:

  • data: object or nil

    • serial: string

    • type: string


GetFingerFromIdentifier

Get online player finger id from identifier / citizenid.

exports['p_policejob']:GetFingerFromIdentifier(identifier)
  • identifier: string

    • Existing identifier / citizenid of player.

Return:

  • data: object or nil

    • serial: string

    • type: string

PreviousServer ExportsNextInteractions

Last updated 4 months ago

👮