mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 17:58:54 +00:00
696277d5bb
Added a config variable to config.lua to enable/disable paycheck logging to Discord, added config option to config.logs.lua for Discord webhook and added function into paycheck.lua to send data to webhook containing paycheck information.
24 lines
478 B
Lua
24 lines
478 B
Lua
Config.DiscordLogs = {
|
|
Webhooks = {
|
|
default = '',
|
|
test = '',
|
|
Chat = '',
|
|
UserActions = '',
|
|
Resources = '',
|
|
Paycheck = ''
|
|
},
|
|
|
|
Colors = { -- https://www.spycolor.com/
|
|
default = 14423100,
|
|
blue = 255,
|
|
red = 16711680,
|
|
green = 65280,
|
|
white = 16777215,
|
|
black = 0,
|
|
orange = 16744192,
|
|
yellow = 16776960,
|
|
pink = 16761035,
|
|
lightgreen = 65309
|
|
}
|
|
}
|