Files
bladwin-RP/lua/bladw_announcement/shared/sh_config.lua
T
nocode 2c5a73cf49 feat(announcement): add shared configuration for announcement system
Create initial configuration file for the announcement system with settings for style, display duration, maximum message length, and sound effects.
2026-07-20 13:49:34 +02:00

10 lines
503 B
Lua

BladW = BladW or {}
BladW.Announcement = BladW.Announcement or {}
BladW.Announcement.Conf = BladW.Announcement.Conf or {}
BladW.Announcement.Conf = {
announcement_style = "simple", -- "simple" ou "loader"
announcement_duration = 10, -- durée d'affichage en secondes
announcement_max_length = 80, -- max de caractères pour le message
announcement_sound = "announce.mp3", -- son à l'apparition ("" = rien), fichier dans sound/ | ex : garrysmod/content_downloaded.wav
}