-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.lua
More file actions
90 lines (88 loc) · 2.27 KB
/
config.lua
File metadata and controls
90 lines (88 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
Config = {}
Config.Templates = {
-- ----------------------------
-- Advanced notification templates
-- ----------------------------
INFO = {
title = "~#3c9ce6~Information~e~",
icon = "warning",
duration = 5000,
placement = 'middle-left',
customSound = {
sound = "INFO",
soundSet = "HUD_SHOP_SOUNDSET"
}
},
SUCCESS = {
title = "~#73f75c~Success!~e~",
icon = "tick",
duration = 5000,
placement = 'middle-left',
customSound = {
sound = "CHECKPOINT_PERFECT",
soundSet = "HUD_MINI_GAME_SOUNDSET",
}
},
ERROR = {
title = "~#f73434~Failed!~e~",
icon = "cross",
duration = 7000,
placement = 'middle-left',
customSound = {
sound = "FAIL",
soundSet = "Objective_Sounds"
}
},
REWARD_MONEY = {
title = "~#ffcc00~Here's your reward!~e~",
icon = 'toast_mp_daily_objective_small',
duration = 7000,
placement = 'middle-left',
customSound = {
sound = "REWARD_NEW_GUN",
soundSet = "HUD_REWARD_SOUNDSET"
}
},
-- ----------------------------
-- Tip notification templates
-- ----------------------------
TIP = {
useBackground = false,
duration = 5000,
placement = 'middle-right',
customSound = {
sound = "INFO_SHOW",
soundSet = "Ledger_Sounds"
}
},
TIP_CASH = {
icon = 'leaderboard_cash',
useBackground = false,
duration = 5000,
placement = 'middle-right',
customSound = {
sound = "PURCHASE",
soundSet = "Ledger_Sounds"
}
},
TIP_XP = {
icon = 'leaderboard_xp',
useBackground = false,
duration = 5000,
placement = 'middle-right',
customSound = {
sound = "INFO_SHOW",
soundSet = "Ledger_Sounds"
}
},
TIP_GOLD = {
icon = 'leaderboard_gold',
useBackground = false,
duration = 5000,
placement = 'middle-right',
customSound = {
sound = "REWARD_NEW_GUN",
soundSet = "HUD_REWARD_SOUNDSET"
}
},
}