Server Exports
SendAlert
Send an alert to the police dispatch.
All data is optional except for (coords, title, and type).
-- coords: Coordinates vector3(x, y, z) in which the alert is triggered
-- title: Title of the alert
-- type: Type of alert (GENERAL, RADARS, 215, DRUGS, FORCE, 48X) This is to filter the alerts in the dashboard
-- message: Alert message
-- job: Job group related to the alert
-- metadata: Additional metadata of the alert (vehicle model, color, plate, speed, weapon, ammo type, name of the subject, unit)
exports['origen_police']:SendAlert({
coords = vector3(0, 0, 0),
title = 'Alert title',
type = 'GENERAL',
message = 'Alert message',
job = 'police',
metadata = {
model = 'Vehicle label',
color = {255, 255, 255},
plate = 'PLATE',
speed = '100 kmh',
weapon = 'Weapon name',
ammotype = 'AMMO_PISTOL',
name = 'Subject name',
unit = 'ADAM-10',
}
})Example of use
GetCentralSuscribeds
Get list of available players in the dispatch.
GetUnpayedBills
Get unpaid fines of a player using their identifier.
GetPlayersReady
Get list of available players on the radio.
trackVehicle
Add the vehicle to the police cameras and dispatch.
unTrackVehicle
Remove the vehicle from the list of tracked vehicles.
GetVehicleTrackeds
Get list of tracked vehicles.
GetPlayersInDuty
Get list of players on duty for a specific category.
This export is only for esx.
Example of use
GetPlayersReadyByJob
Get a list with all the players sources ready filtered by players job, the source is the index of each entry of the table.
Example of use
Last updated