Configuration
Settings.lua
🐞 Settings.Debug = true
Settings.Debug = true
'Enables debug mode' – allows test commands like
/rd1
,/rd2
, and/rd3
.
🔔 Settings.NotificationTypes = { ... }
Settings.NotificationTypes = { ... }
'Defines different types of notifications' – each with unique style and animation.
Each notification type (debug
, info
, warning
, error
, success
, award
) has:
'background-color'
: semi-transparent background.'color'
: accent color (like blue, red, etc.).'icon'
: FontAwesome icon code.'title-color'
: color of the title text.'title-fontsize'
: font size of the title.'text-color'
: color of the message text.'animation'
: how the notification appears (e.g.,'slide'
,'fade'
,'pop'
).
🖼️ Settings.UseLogo = false
Settings.UseLogo = false
'Show or hide logo in notification' –
false
disables logo.
🖼️ Settings.LogoSrc = 'logo.png'
Settings.LogoSrc = 'logo.png'
'Path to logo image' – used only if
UseLogo = true
.
🔊 Settings.SoundVolume = 0.9
Settings.SoundVolume = 0.9
'Controls notification sound volume' –
0.9
is 90%.
🖥️ Settings.TextUIbackgroundColor = "#14141460"
Settings.TextUIbackgroundColor = "#14141460"
'Background color of 2D Text UI'
🖥️ Settings.TexTUIColor = "#fff"
Settings.TexTUIColor = "#fff"
'Text color of 2D Text UI'
🧊 3D Text UI Settings
Settings.color = 'BLUE'
'Color of 3D text display'
Settings.Disable = { ... }
'Conditions when 3D text UI should be hidden'
'onDeath' = true
→ hides when player is dead.'onNuiFocus' = false
→ shows even if UI has focus.'onVehicle' = true
→ hides inside vehicles.'onHandCuff' = true
→ hides when handcuffed.
🧪 Debug Commands (only if Debug = true
)
Debug = true
)/rd1
'Sends test notifications of all types'
/rd2
'Shows a sample 2D Text UI' – e.g.,
'Open Boss Menu'
.
/rd3
'Hides the 2D Text UI'
Last updated