mirror of
https://github.com/ENoir420/FIveM_Discord_Log.git
synced 2026-03-31 06:33:58 -04:00
62 lines
2.9 KiB
Lua
62 lines
2.9 KiB
Lua
Config = {}
|
|
|
|
Config.AllLogs = true -- Attiva/Disattiva i logs
|
|
Config.postal = false -- se lo setti False, non apparirà il civico di spawn
|
|
Config.username = "Bot Log" -- Bot Username
|
|
Config.avatar = "https://placeholder.com/" -- Bot Avatar
|
|
Config.communtiyName = "" -- Nome al top embed
|
|
Config.communtiyLogo = "https://placeholder.com/" -- Icona al top embed
|
|
Config.FooterText = "2021 ENoir_420" -- Testo Footer per l' embed
|
|
Config.FooterIcon = "https://placeholder.com/" -- Icona Footer per l' embed
|
|
|
|
|
|
Config.weaponLog = true -- setta False per disabilitare i colpi d'arma da fuoco log
|
|
Config.InlineFields = true -- setta False per disabilitare i dettagli dei player
|
|
|
|
Config.playerID = false -- setta False per disabilitare il Player ID nei Log
|
|
Config.steamID = true -- setta False per disabilitare lo Steam ID nei Log
|
|
Config.steamURL = false -- setta False per disabilitare lo URL Steam nei Log
|
|
Config.discordID = true -- setta False per disabilitare il Discord ID nei Log
|
|
Config.license = false -- setta False per disabilitare il numero di licenza nei Log
|
|
Config.IP = false -- setta False per disabilitare l'indirizzo IP nei Log
|
|
|
|
|
|
Config.BaseColors ={
|
|
chat = "#A1A1A1", -- Chat Message
|
|
joins = "#3AF241", -- Log-in Player
|
|
leaving = "#F23A3A", -- Log-out Player
|
|
deaths = "#000000", -- Player che spara
|
|
shooting = "#2E66F2", -- Player Morto
|
|
resources = "#EBEE3F", -- Risorsa Startata/Stoppata
|
|
}
|
|
|
|
|
|
Config.webhooks = {
|
|
all = "DISCORD_WEBHOOK", -- Tutti i log in un unico canale
|
|
chat = "https://discord.com/api/webhooks/855611974058377228/xeXRIc7eexnm9Ys7lAdtsWdpANQ9Usg-6hloMK_8w92gTDjBY1T_ezjAnc4ydgdGcppc", -- Chat Message
|
|
joins = "https://discord.com/api/webhooks/855611628946456586/LoZmJUH3QzPjc-e_URfsFCLiS2NxTEr9M1A36dFPABSc2_5pPd7FD4NQnYoC0Xj1HLNA", -- Log-in Player
|
|
leaving = "https://discord.com/api/webhooks/855611628946456586/LoZmJUH3QzPjc-e_URfsFCLiS2NxTEr9M1A36dFPABSc2_5pPd7FD4NQnYoC0Xj1HLNA", -- Log-out Player
|
|
deaths = "https://discord.com/api/webhooks/855611853043793930/oCLMu6xZgbZ8O6vRoJ-SZYcCgB1fTbk8-34UNyf1rd-T2NenNxQC8Dw136TLykLIMW2I", -- Player che spara
|
|
shooting = "https://discord.com/api/webhooks/855611853043793930/oCLMu6xZgbZ8O6vRoJ-SZYcCgB1fTbk8-34UNyf1rd-T2NenNxQC8Dw136TLykLIMW2I", -- Player Morto
|
|
resources = "https://discord.com/api/webhooks/855615988141391882/jHIpJptNwCMagtjvg2_txtjby535vhBygLj2DwCgxAdAfQlF0fQlPnTAcG9MULqG4dJf", -- Risorsa Startata/Stoppata
|
|
}
|
|
|
|
Config.TitleIcon = {
|
|
chat = "💬", -- Chat Message
|
|
joins = "📥", -- Log-in Player
|
|
leaving = "📤", -- Log-out Player
|
|
deaths = "💀", -- Player che spara
|
|
shooting = "🔫", -- Player Morto
|
|
resources = "🔧", -- Risorsa Startata/Stoppata
|
|
}
|
|
|
|
Config.Plugins = {
|
|
|
|
["NameChange"] = {color = "#03fc98", icon = "🔗", webhook = "DISCORD_WEBHOOK"},
|
|
}
|
|
|
|
|
|
|
|
Config.debug = false
|
|
Config.versionCheck = "1.0.0"
|