-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.lua
372 lines (360 loc) · 16.4 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
local ToggledReports = {}
local ToggledPMs = {}
local Reporters = {}
--Function
function isAdmin(group)
if Config.AdminRoles[group] then
return true
else
return false
end
end
function GetAdmins()
local Admins = {}
local xAll = ESX.GetPlayers()
for i = 1, #xAll, 1 do
local xTarget = ESX.GetPlayerFromId(xAll[i])
if isAdmin(xTarget.getGroup()) then
Admins[xTarget.source] = xTarget.source
end
end
return Admins
end
function IsAnyBlacklistedWord(message)
local isBlacklisted = false
for k, v in pairs(Config.BlacklistedWords) do
if string.find(message, v) then
isBlacklisted = true
end
end
return isBlacklisted
end
function Discord(name, message)
local embed = {
{
["title"] = "**" .. name .. "**",
["description"] = message,
},
}
PerformHttpRequest(
Config.DiscordWebhook,
function(err, text, headers) end,
"POST",
json.encode({ username = name, embeds = embed }),
{ ["Content-Type"] = "application/json" }
)
end
--Send Report
if Config.EnableCommands["Report"] then
RegisterCommand(Config.Commands["Report"], function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local message = rawCommand:sub(string.len(Config.Commands["Report"]) + 1)
if #message > Config.MinCharacterToSendReport then
if not IsAnyBlacklistedWord(message) then
Reporters[xPlayer.source] = xPlayer.source
for k, v in pairs(GetAdmins()) do
local xTarget = ESX.GetPlayerFromId(k)
if xPlayer.source ~= xTarget.source then
if not ToggledReports[xPlayer.source] then
TriggerClientEvent("chat:addMessage", xTarget.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #ff0000; border-radius: 10px;"><i class="fas fa-question-circle" style="font-size: medium;"></i> <span style="font-weight: 600;">Jelentés tőle: <span style="color: red; font-weight:600 ;">'
.. GetPlayerName(xPlayer.source)
.. "</span> (^3"
.. xPlayer.source
.. "^0) (^3"
.. xPlayer.getName()
.. '^0) <span style="font-weight: 600;"> <br><i class="fas fa-comment-dots"></i> Üzenet: </span> <span style="color: #ff9100;">'
.. message
.. "</span></div>",
})
end
end
end
Discord(
"Új jelentés",
"``"
.. GetPlayerName(xPlayer.source)
.. " ("
.. xPlayer.source
.. ")`` segítséget kért!```Üzenet: "
.. message
.. "```"
)
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00ffa6; border-radius: 10px;"><i class="fas fa-info-circle" style="font-size: medium;"></i> <span style="font-weight: 600; color: #00ffa6;">Sikeresen</span> elküldted jelentésed! (Üzeneted: ^3'
.. message
.. "^0)</div>",
})
else
if Config.ActionIfBlacklisted["KickPlayer"] then
xPlayer.kick("Blacklisted word!")
end
if Config.ActionIfBlacklisted["NotifyPlayer"] then
xPlayer.showNotification("Feketelistás szó!")
end
end
else
xPlayer.showNotification("Helytelen üzenet bevitel!")
end
end, false)
end
--Toggle Reports
if Config.EnableCommands["ToggleReports"] then
RegisterCommand(Config.Commands["ToggleReports"], function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
if isAdmin(xPlayer.getGroup()) then
if ToggledReports[xPlayer.source] then
ToggledReports[xPlayer.source] = nil
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #c20000; border-radius: 10px;"><i class="fas fa-comment-slash" style="font-size: medium;"></i> <span style="color: white;"> A jelentések láthatósága: <span style="font-weight:600 ; color: red;">kikapcsolva</span></div>',
})
elseif not ToggledReports[xPlayer.source] then
ToggledReports[xPlayer.source] = xPlayer.source
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00d62e; border-radius: 10px;"><i class="fas fa-comment-dots" style="font-size: medium;"></i> <span style="color: white;"> A jelentések láthatósága: <span style="font-weight:600 ; color: #00d62e;">bekapcsolva</span></div>',
})
end
else
xPlayer.showNotification("Nincsen jogosultságod!")
end
end, false)
end
--Reply to a Report
if Config.EnableCommands["Reply"] then
RegisterCommand(Config.Commands["Reply"], function(source, args, rawCommand)
local xTarget = ESX.GetPlayerFromId(args[1])
local xPlayer = ESX.GetPlayerFromId(source)
table.remove(args, 1)
local onlyReportReply = Config.ReplyOnlyReport and false or Reporters[xTarget.source]
local message = table.concat(args, " ")
if isAdmin(xPlayer.getGroup()) then
if xTarget then
if message then
if onlyReportReply then
TriggerClientEvent("chat:addMessage", xTarget.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00ddff; border-radius: 10px;"><i class="fas fa-envelope" style="font-size: medium;"></i> <span style="color: #00ddff; font-weight:600 ;">'
.. GetPlayerName(xPlayer.source)
.. "</span> (^3"
.. xPlayer.source
.. '^0) válaszolt a jelentésedre. <span style="font-weight: 600;">Válasz:</span> <span style="color: orange; font-weight:600 ;">'
.. message
.. "</span></div>",
})
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00ddff; border-radius: 10px;"><i class="fas fa-envelope" style="font-size: medium;"></i> Sikeresen válaszoltál <span style="color: #00ddff; font-weight:600 ;">'
.. GetPlayerName(xTarget.source)
.. "</span> (^3"
.. xTarget.source
.. '^0) jelentésére. <span style="font-weight: 600;">Válaszod:</span> <span style="color: orange; font-weight:600 ;">'
.. message
.. "</span></div>",
})
Discord(
"Admin válasz",
"``"
.. GetPlayerName(xPlayer.source)
.. " ("
.. xPlayer.source
.. ")`` Admin válaszolt ``"
.. GetPlayerName(xTarget.source)
.. " ("
.. xTarget.source
.. ")`` jelentésére! ```Üzenet: "
.. message
.. "```"
)
for k, v in pairs(GetAdmins()) do
local xTarget = ESX.GetPlayerFromId(k)
if xPlayer.source ~= xTarget.source then
if not ToggledReports[xPlayer.source] then
TriggerClientEvent("chat:addMessage", xTarget.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00d62e; border-radius: 10px;"><i class="fas fa-user-edit" style="font-size: medium;"></i> <span style="color: #00ff48; font-weight:600 ;">'
.. GetPlayerName(xPlayer.source)
.. "</span> (^3"
.. xPlayer.source
.. '^0) válaszolt <span style="color: #00aaff; font-weight:600 ;">'
.. GetPlayerName(xTarget.source)
.. "</span> (^3"
.. xTarget.source
.. '^0) jelentésére. (Válasza: <span style="color: orange; font-weight:600 ;">'
.. message
.. "</span>)</div>",
})
end
end
end
else
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #c20000; border-radius: 10px;"><i class="fas fa-exclamation-circle" style="font-size: medium;"></i> <span style="color: white;"><span style="font-weight:600 ; color: red;">Sikertelen</span> válasz! <span style="font-weight:600 ;">Hiba:</span> <span style="color: orange;">A játékos nem kért segítséget</span></div>',
})
end
else
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #c20000; border-radius: 10px;"><i class="fas fa-exclamation-circle" style="font-size: medium;"></i> <span style="color: white;"><span style="font-weight:600 ; color: red;">Sikertelen</span> válasz! <span style="font-weight:600 ;">Hiba:</span> <span style="color: orange;">Az üzenet nincsen megadva</span></div>',
})
end
else
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #c20000; border-radius: 10px;"><i class="fas fa-exclamation-circle" style="font-size: medium;"></i> <span style="color: white;"><span style="font-weight:600 ; color: red;">Sikertelen</span> válasz! <span style="font-weight:600 ;">Hiba:</span> <span style="color: orange;">A játékos (ID) nincsen megadva</span></div>',
})
end
else
xPlayer.showNotification("Nincsen jogosultságod!")
end
end, false)
end
--Close Report
if Config.EnableCommands["CloseReport"] then
RegisterCommand(Config.Commands["CloseReport"], function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local xTarget = ESX.GetPlayerFromId(args[1])
local xAdmins = ESX.GetExtendedPlayers("group", "admin")
if isAdmin(xPlayer.getGroup()) then
if xPlayer and xTarget then
if Reporters[xTarget.source] then
Reporters[xTarget.source] = nil
TriggerClientEvent("chat:addMessage", xTarget.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00ddff; border-radius: 10px;"><i class="fas fa-envelope" style="font-size: medium;"></i> <span style="color: #00ddff; font-weight:600 ;">'
.. GetPlayerName(xPlayer.source)
.. "</span> (^3"
.. xPlayer.source
.. "^0) bezárta a jelentésedet.</div>",
})
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00ddff; border-radius: 10px;"><i class="fas fa-envelope" style="font-size: medium;"></i> <span style="color: #00ddff; font-weight:600 ;">'
.. GetPlayerName(xTarget.source)
.. "</span> (^3"
.. xTarget.source
.. "^0) játékos jelentése be lett zárva.</div>",
})
Discord(
"Jelentés bezárása",
"``"
.. GetPlayerName(xPlayer.source)
.. " ("
.. xPlayer.source
.. ")`` bezárta ``"
.. GetPlayerName(xTarget.source)
.. " ("
.. xTarget.source
.. ")`` jelentését!"
)
for k, v in pairs(GetAdmins()) do
local xTarget = ESX.GetPlayerFromId(k)
if xPlayer.source ~= xTarget.source then
if not ToggledReports[xPlayer.source] then
TriggerClientEvent("chat:addMessage", xTarget.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00d62e; border-radius: 10px;"><i class="fas fa-user-edit" style="font-size: medium;"></i> <span style="color: #00ff48; font-weight:600 ;">'
.. GetPlayerName(xPlayer.source)
.. "</span> (^3"
.. xPlayer.source
.. '^0) bezárta <span style="color: #00aaff; font-weight:600 ;">'
.. GetPlayerName(xTarget.source)
.. "</span> (^3"
.. xTarget.source
.. "^0) jelentését.</div>",
})
end
end
end
else
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #c20000; border-radius: 10px;"><i class="fas fa-exclamation-circle" style="font-size: medium;"></i> <span style="color: white;"><span style="font-weight:600 ; color: red;">Sikertelen</span> bezárás! <span style="font-weight:600 ;">Hiba:</span> <span style="color: orange;">Ez a játékos nem kért segítséget</span></div>',
})
end
else
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #c20000; border-radius: 10px;"><i class="fas fa-exclamation-circle" style="font-size: medium;"></i> <span style="color: white;"><span style="font-weight:600 ; color: red;">Sikertelen</span> bezárás! <span style="font-weight:600 ;">Hiba:</span> <span style="color: orange;">A játékos (ID) nincsen megadva</span></div>',
})
end
else
xPlayer.showNotification("Nincsen jogosultságod!")
end
end, false)
end
--PM
if Config.EnableCommands["PM"] then
RegisterCommand(Config.Commands["PM"], function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local xTarget = ESX.GetPlayerFromId(args[1])
table.remove(args, 1)
local message = table.concat(args, " ")
if xPlayer and xTarget then
if message then
if not IsAnyBlacklistedWord(message) then
if not ToggledPMs[xTarget.source] then
xTarget.showNotification(
"~b~Új privát üzeneted érkezett! [" .. GetPlayerName(xPlayer.source) .. "]"
)
TriggerClientEvent("chat:addMessage", xTarget.source, {
template = '<div style="padding: 0.4vw 0.5vw;margin-top: 10px; margin-bottom:10px; font-size: 15px; margin: 0.5vw; background-color:#141414; border: 3.2px solid #00856d; border-radius: 10px;"><i class="fas fa-envelope"></i> ['
.. GetPlayerName(xPlayer.source)
.. " | "
.. xPlayer.source
.. "] privát üzenete: </span> <span style='color: #f77300;'> "
.. message
.. "</span></div>",
})
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw;margin-top: 10px; margin-bottom:10px; font-size: 15px; margin: 0.5vw; background-color:#141414; border: 3.2px solid #078500; border-radius: 10px;"><i class="fas fa-envelope"></i> ['
.. GetPlayerName(xPlayer.source)
.. " | "
.. xPlayer.source
.. "] => ["
.. GetPlayerName(xTarget.source)
.. " | "
.. xTarget.source
.. "]: </span> <span style='color: #f77300;'> "
.. message
.. "</span></div>",
})
if Config.LogPM then
Discord(
"PM üzenet",
"``"
.. GetPlayerName(xPlayer.source)
.. " ("
.. xPlayer.source
.. ")`` üzenetet küldött ``"
.. GetPlayerName(xTarget.source)
.. " ("
.. xTarget.source
.. ")`` számára! ```Üzenet: "
.. message
.. "```"
)
end
else
xPlayer.showNotification("A játékos nem fogad privát üzeneteket!")
end
else
if Config.ActionIfBlacklisted["KickPlayer"] then
xPlayer.kick("Blacklisted word!")
end
if Config.ActionIfBlacklisted["NotifyPlayer"] then
xPlayer.showNotification("Feketelistás szó!")
end
end
end
else
xPlayer.showNotification("Helytelen játékod ID!")
end
end, false)
end
-- Toggle PM
if Config.EnableCommands["TogglePM"] then
RegisterCommand(Config.Commands["TogglePM"], function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
if ToggledPMs[xPlayer.source] then
ToggledPMs[xPlayer.source] = nil
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #c20000; border-radius: 10px;"><i class="fas fa-comment-slash" style="font-size: medium;"></i> <span style="color: white;"> A PM-ek fogadása: <span style="font-weight:600 ; color: red;">kikapcsolva</span></div>',
})
elseif not ToggledPMs[xPlayer.source] then
ToggledPMs[xPlayer.source] = xPlayer.source
TriggerClientEvent("chat:addMessage", xPlayer.source, {
template = '<div style="padding: 0.4vw 0.5vw; font-size: 15px; margin: 0.5vw; background-color:#2b2b2b; border: 2.2px solid #00d62e; border-radius: 10px;"><i class="fas fa-comment-dots" style="font-size: medium;"></i> <span style="color: white;"> A PM-ek fogadása: <span style="font-weight:600 ; color: #00d62e;">bekapcsolva</span></div>',
})
end
end, false)
end