mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-28 17:01:14 +00:00
24 lines
524 B
Lua
24 lines
524 B
Lua
Config = {}
|
|
|
|
---@class MedalClipOptions
|
|
---@field duration integer
|
|
---@field captureDelayMs integer
|
|
---@field alertType 'Default'|'Disabled'|'SoundOnly'|'OverlayOnly'
|
|
|
|
---@class MedalConfig
|
|
---@field enabled boolean
|
|
---@field publicKey string
|
|
---@field eventName string
|
|
---@field clipOptions MedalClipOptions
|
|
|
|
---@type MedalConfig
|
|
Config.Medal = {
|
|
enabled = true,
|
|
publicKey = 'pub_82qkpMKV77AkpqLSgWsxLlDyfzpPI7Vw',
|
|
eventName = 'Death',
|
|
clipOptions = {
|
|
duration = 30,
|
|
captureDelayMs = 0,
|
|
alertType = 'Default'
|
|
}
|
|
} |