Configuration

config.lua:

Config = {}

Config.Locale = "de" -- "de" oder "en"

Config.AllowedPlacerGroups = {
    ['admin'] = true,
    ['superadmin'] = true
}

Config.RingCooldown = 180 -- in Sekunden (3 Minuten)

Config.KlingelRadius = 1.0 -- Nur innerhalb dieses Radius kann geklingelt werden

Config.CommandPlaceBell = "placebell"

Config.PlaceSpeed = 0.005 -- bestimme die Geschwindigkeit beim platzieren der Klingel


Config.EnableAntiSpam = false
Config.MaxRingsPerPlayer = 3
Config.TimeWindow = 300 -- in Sekunden (5 Minuten)



Config.EnableBlips = true

Config.BellBlip = {
    sprite = 280,            -- Blip-Symbol
    color = 1,               -- Blip-Farbe
    scale = 0.8,             -- Blip-Größe
    name = "Klingel",        -- Blip-Name
    flash = true,            -- Blip blinkt (true/false)
    duration = 60000         -- Dauer bis der Blip wieder verschwindet (in ms) - 60 Sekunden
}

doorbells.json

Last updated