448baba2c1
Add new configuration option to control the announcement border color theme. Supports two theme options: - "blue": blue border color - "white": white border color (default) This allows customization of the announcement appearance without code modification.
11 lines
598 B
Lua
11 lines
598 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_theme = "white", -- couleur des contours extérieurs : "blue" ou "white"
|
|
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
|
|
} |