Zea Development - Documentation
StoreWebsiteDiscord
  • Welcome
  • General
    • Downloading Resources
    • Transferring Resources
    • Resource Support
    • Escrow Errors
  • Our Resources
    • z_hose
      • Resource Configuration
        • Configuration Modules
      • Compatibility with ox_inventory
      • Resource Usage
      • Developer Resources
        • Client Exports
        • Server Exports
    • z_boot (Coming Soon!)
      • Resource Configuration
        • Configuration Modules
        • Item Creation
      • Developer Resources
        • Client Exports
    • z_els
      • Resource Configuration
      • Resource Usage
      • Developer Exports
      • Creating Patterns
      • Directional Types
    • z_fires
      • Resource Configuration
      • JSON Configuration
      • Resource Usage
      • Developer Exports
      • Materials List
    • z_ppvfan
      • Resource Configuration
      • Resource Usage
    • zTurnout-System
      • Resource Configuration
      • Resource Usage
      • Trigger Events
    • zWigWags
      • Resource Configuration
      • Resource Usage
      • Trigger Events
    • zFire-Alarm
      • Resource Configuration
      • Resource Usage
    • z9m-Ladder
      • Resource Configuration
      • Resource Usage
    • z105m-Ladder
      • Resource Configuration
      • Resource Usage
    • z135m-Ladder
      • Resource Configuration
      • Resource Usage
    • zCustody-Alarm
      • Resource Configuration
      • Resource Usage
    • zFire-Pole
      • Resource Configuration
      • Resource Usage
    • zTurnout-Rack
      • Resource Configuration
      • Resource Usage
    • zPager
      • Resource Configuration
      • Resource Usage
    • zTurnouts
      • Resource Configuration
      • Resource Usage
Powered by GitBook
On this page
  1. Our Resources
  2. zTurnout-System

Trigger Events

This page is intended for use by other developers to integrate additional resources into the zTurnout-System.


("Turnout-System:Mobilise")

This is a server event that needs to be invoked on the client side. It is responsible for generating a mobilization ticket and sending it to the designated stations, as long as the provided callsigns are valid. The purpose of this event is to facilitate the integration and support of other Computer-Aided Dispatch (CAD) systems within the FiveM platform.


  • callsigns: The string should include all desired call signs for mobilization. Each call sign should be followed by a comma, such as (G50P1, G50P2).

  • itype (Incident Type): This string should include the incident type, such as "Domestic Property Fire", for example.

  • iaddress (Incident Address): This string should include the address or location of the emergency, such as "7 Grove Street.

  • idetails (Incident Details): This string should contain information regarding the incident, such as "Multiple calls reporting smoke emanating from a house, occupants unaccounted for.

  • inumber (Incident Number): This string should include the CAD / Incident reference number.

  • talkgroup: This string should include the talkgroup / radio channel that is being utilized for the incident.

  • timedate: This string should contain the timestamp and date of the initial emergency call.

  • mapref: This string should include a map reference of the incident location, such as "postal 129".


Lua Example
TriggerServerEvent("Turnout-System:Mobilise", {
   callsigns = 'G50P1, G50P2',
   itype = 'F4A6 - Traffic Incident - Vehicle Fire - Large',
   iaddress = '7 Grove Stret',
   idetails = 'PASSER BY HAS CALLED IN A VEHICLE FIRE.',
   inumber = '#146774',
   talkgroup = 'GMFO-1',
   timedate = '13:40 31/10/23',
   mapref = 'Postal 128',
})

JavaScript Example
emitNet("Turnout-System:Mobilise", {
   callsigns: 'G50P1, G50P2',
   itype: 'F4A6 - Traffic Incident - Vehicle Fire - Large',
   iaddress: '7 Grove Stret',
   idetails: 'PASSER BY HAS CALLED IN A VEHICLE FIRE.',
   inumber: '#146774',
   talkgroup: 'GMFO-1',
   timedate: '13:40 31/10/23',
   mapref: 'Postal 128',
})

C# Example
TriggerServerEvent("Turnout-System:Mobilise", {
   callsigns = "G50P1, G50P2",
   itype = "F4A6 - Traffic Incident - Vehicle Fire - Large",
   iaddress = "7 Grove Stret",
   idetails = "PASSER BY HAS CALLED IN A VEHICLE FIRE.",
   inumber = "#146774",
   talkgroup = "GMFO-1",
   timedate = "13:40 31/10/23",
   mapref = "Postal 128",
})
PreviousResource UsageNextzWigWags

Last updated 1 year ago

Page cover image