-
Notifications
You must be signed in to change notification settings - Fork 30
/
logs.lua
31 lines (27 loc) · 1.04 KB
/
logs.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
Logs = {}
-- What logging service do you want to use?
-- Available options: 'fivemanage', 'fivemerr', 'discord' & 'none'
-- It is highly recommended to use a proper logging service such as Fivemanage or Fivemerr
Logs.Service = 'none'
-- Do you want to include screenshots with your logs?
-- This is only applicable to Fivemanage and Fivemerr
Logs.Screenshots = false
-- You can enable (true) or disable (false) specific player events to log here
Logs.Events = {
-- register_robbed is when a register has been robbed.. shocker, right?
register_robbed = false,
-- safe_robbed is when.. come on now, you gotta know..
safe_robbed = false
}
-- If Logs.Service = 'discord', you can customize the webhook data here
-- If not using Discord, this section can be ignored
Logs.Discord = {
-- The name of the webhook
name = '24/7 Robbery Logs',
-- The webhook link
link = '',
-- The webhook profile image
image = 'https://i.imgur.com/ILTkWBh.png',
-- The webhook footer image
footer = 'https://i.imgur.com/ILTkWBh.png'
}