-
Notifications
You must be signed in to change notification settings - Fork 11
/
server.lua
160 lines (136 loc) · 6.28 KB
/
server.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
-- ESX Framework Stuff ---------------------------------------------------------------
ESX = nil
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)
ESX.RegisterServerCallback('linden_outlawalert:getCharData', function(source, cb)
local xPlayer = ESX.GetPlayerFromId(source)
if not xPlayer then return end
local identifier = xPlayer.getIdentifier()
MySQL.Async.fetchAll('SELECT firstname, lastname, phone_number FROM users WHERE identifier = @identifier', {
['@identifier'] = identifier
}, function(results)
cb(results[1])
end)
end)
ESX.RegisterServerCallback('linden_outlawalert:isVehicleOwned', function(source, cb, plate)
MySQL.Async.fetchAll('SELECT plate FROM owned_vehicles WHERE plate = @plate', {
['@plate'] = plate
}, function(result)
if result[1] then
cb(true)
else
cb(false)
end
end)
end)
-- ESX Framework Stuff ---------------------------------------------------------------
local name = ('%s %s'):format(firstname, lastname)
local title = ('%s %s'):format(rank, lastname)
caller = name
info = title
function getCaller(src)
local xPlayer = ESX.GetPlayerFromId(src)
return xPlayer.getName()
end
function getTitle(src)
local xPlayer = ESX.GetPlayerFromId(src)
local title = ('%s %s'):format(xPlayer.job.grade_label, xPlayer.get('lastName'))
return title
end
local dispatchCodes = {
melee = { displayCode = '10-10', description = _U('melee'), isImportant = 0, recipientList = {'police'},
blipSprite = 652, blipColour = 84, blipScale = 1.5 },
officerdown = {displayCode = '10-99', description = _U('officerdown'), isImportant = 1, recipientList = {'police', 'ambulance'},
blipSprite = 653, blipColour = 84, blipScale = 1.5, infoM = 'fa-portrait'},
persondown = {displayCode = '10-52', description = _U('persondown'), isImportant = 0, recipientList = {'police', 'ambulance'},
blipSprite = 153, blipColour = 84, blipScale = 1.5, infoM = 'fa-portrait'},
autotheft = {displayCode = '10-16', description = _U('autotheft'), isImportant = 0, recipientList = {'police'},
blipSprite = 651, blipColour = 84, blipScale = 1.5, infoM = 'fa-car', infoM2 = 'fa-palette' },
speeding = {displayCode = '10-66', description = _U('speeding'), isImportant = 0, recipientList = {'police'},
blipSprite = 650, blipColour = 84, blipScale = 1.5, infoM = 'fa-car', infoM2 = 'fa-palette' },
shooting = { displayCode = '10-13', description = _U('shooting'), isImportant = 0, recipientList = {'police'},
blipSprite = 648, blipColour = 84, blipScale = 1.5 },
driveby = { displayCode = '10-13', description = _U('driveby'), isImportant = 0, recipientList = {'police'},
blipSprite = 649, blipColour = 84, blipScale = 1.5, infoM = 'fa-car', infoM2 = 'fa-palette' },
}
--[[ Example custom alert
RegisterCommand('testvangelico', function(playerId, args, rawCommand)
local data = {displayCode = '211', description = 'Robbery', isImportant = 0, recipientList = {'police'}, length = '10000', infoM = 'fa-info-circle', info = 'Vangelico Jewelry Store'}
local dispatchData = {dispatchData = data, caller = 'Alarm', coords = vector3(-633.9, -241.7, 38.1)}
TriggerEvent('wf-alerts:svNotify', dispatchData)
end, false)
--]]
local blacklistedIdentifiers = {
}
function Blacklisted()
local xPlayer = ESX.GetPlayerFromId(source)
if not xPlayer then return false end
local identifier = xPlayer.steamId
for i = 1, #blacklistedIdentifiers do
if identifier == blacklistedIdentifiers[i] then
return true
end
end
return false
end
RegisterServerEvent('wf-alerts:svNotify')
AddEventHandler('wf-alerts:svNotify', function(pData)
if not Blacklisted(source) then
local dispatchData
if pData.dispatchCode == 'officerdown' then
pData.info = getTitle(source)
end
if pData.dispatchCode == 'persondown' then
pData.caller = getCaller(source)
end
if not pData.dispatchCode then dispatchData = pData.dispatchData elseif dispatchCodes[pData.dispatchCode] ~= nil then dispatchData = dispatchCodes[pData.dispatchCode] end
if not pData.info then pData.info = dispatchData.info end
if not pData.info2 then pData.info2 = dispatchData.info2 end
if not pData.length then pData.length = dispatchData.length end
pData.displayCode = dispatchData.displayCode
pData.dispatchMessage = dispatchData.description
pData.isImportant = dispatchData.isImportant
pData.recipientList = dispatchData.recipientList
pData.infoM = dispatchData.infoM
pData.infoM2 = dispatchData.infoM2
pData.sprite = dispatchData.blipSprite
pData.colour = dispatchData.blipColour
pData.scale = dispatchData.blipScale
TriggerClientEvent('wf-alerts:clNotify', -1, pData)
TriggerClientEvent('dispatch:clNotify', -1, pData, math.random(1, 1000))
local n = [[
]]
local details = pData.dispatchMessage
if pData.info then details = details .. n .. pData.info end
if pData.info2 then details = details .. n .. pData.info2 end
if pData.recipientList[1] == 'police' then TriggerEvent('mdt:newCall', details, pData.caller, vector3(pData.coords.x, pData.coords.y, pData.coords.z), false) end
end
end)
RegisterServerEvent('wf-alerts:svNotify911')
AddEventHandler('wf-alerts:svNotify911', function(message, caller, coords, data)
if message ~= nil then
local pData = {}
pData.displayCode = '911'
pData.dispatchMessage = message
if caller == _U('caller_unknown') then pData.dispatchMessage = _U('unknown_caller') end
pData.recipientList = {'police', 'ambulance'}
pData.length = 13000
pData.infoM = 'fa-phone'
pData.info = message
pData.coords = vector3(coords.x, coords.y, coords.z)
pData.sprite, pData.colour, pData.scale = 480, 84, 2.0 -- radar_vip, blue
pData.units = data
pData.caller = caller
pData.dispatchCode = '911 call'
--[[ local xPlayers = ESX.GetPlayers()
for i= 1, #xPlayers do
local source = xPlayers[i]
local xPlayer = ESX.GetPlayerFromId(source)
if xPlayer.job.name == 'police' or xPlayer.job.name == 'ambulance' then
TriggerClientEvent('wf-alerts:clNotify', source, pData)
end
end]]
TriggerClientEvent('wf-alerts:clNotify', -1, pData) -- Send to all clients then check auth clientside?
TriggerClientEvent('dispatch:clNotify', -1, pData, math.random(1, 1000))
TriggerEvent('mdt:newCall', message, caller, vector3(coords.x, coords.y, coords.z), false)
end
end)