-
Notifications
You must be signed in to change notification settings - Fork 21
/
config.lua
18 lines (18 loc) · 914 Bytes
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cfg = {
position = 'top-right', --Changes the position of the notifications
maxNotifications = 0, --Max notifications to show on screen (0 indicates no limit)
sound = { --Change the alert sound
name = '5_SEC_WARNING',
reference = 'HUD_MINI_GAME_SOUNDSET'
},
animations = {
insertAnimation = 'insert-right', --Possible animation types: 'insert-left', 'insert-right', 'insert-top', 'insert-bottom', 'fadein', 'scalein' and 'rotatein'
insertDuration = 1000, -- Duration of the insert animation
removeAnimation = 'fadeout', -- Possible animation types: 'fadeout', 'scaleout', 'rotateout'
removeDuration = 600, -- Duration of the remove animation
},
useHistory = false, --Use the history system
historyPosition = 'middle-right', --Changes the position of the history
historyCommand = 'notihistory', --Command to open the history
debugMode = false -- Toggle developer prints
}