Configuration
config.lua
config.lua
Config = {}
Config.Debug = false
Config.CenterCursorOnFocus = true
Config.Messages = {
EnableCommands = true, -- Enables "/" commands inside report chat messages
Cooldown = 1000,
}
Config.LengthLimits = {
Title = {
Min = 3,
Max = 40,
},
Description = {
Min = 10,
Max = 200,
},
Message = {
Min = 1,
Max = 200,
},
}
Config.Notifications = {
Enabled = true,
Default = true,
Sound = true,
}
Config.Screenshots = {
Enabled = true,
Distance = 100,
ResourceName = "screenshot-basic",
BlockFailedScreenshots = true,
DefaultUrl = false, -- boolean or string
}
Config.Categories = {
{
label = "Rule",
value = "rule",
icon = "user",
},
{
label = "Bug",
value = "bug",
icon = "bug",
},
{
label = "Question",
value = "question",
icon = "circle-question",
},
}
Config.Actions = {
{
label = "Goto",
value = "goto",
icon = "location-arrow",
},
{
label = "Bring",
value = "bring",
icon = "user-plus",
},
{
label = "Freeze",
value = "freeze",
icon = "snowflake",
},
{
label = "Revive",
value = "revive",
icon = "heartbeat",
},
}Last updated on