-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCfgNotification.hpp
More file actions
40 lines (35 loc) · 1.05 KB
/
CfgNotification.hpp
File metadata and controls
40 lines (35 loc) · 1.05 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
class TF47_core_notification {
title = "";
iconPicture = "";
iconText = "";
description = "%1";
color[] = {1,1,1,1};
duration = 5;
priority = 0;
difficulty[] = {};
};
class TF47_core_notification_ticketLoss : TF47_core_notification {
title = "Ticket loss";
iconPicture = "TF47Core\data\icons\tickets_loss.paa";
description = "%1";
};
class TF47_core_notification_ticketGain : TF47_core_notification {
title = "Ticket gain";
iconPicture = "TF47Core\data\icons\tickets_gain.paa";
description = "%1";
};
class TF47_core_notification_outOfTickets : TF47_core_notification {
title = "No tickets remaining";
iconPicture = "TF47Core\data\icons\tickets_lost.paa";
description = "%1";
};
class TF47_core_notification_notWhitelisted : TF47_core_notification {
title = "Not whitelisted";
iconPicture = "TF47Core\data\icons\wrong_slot.paa";
description = "%1";
};
class TF47_core_notification_badWeapon : TF47_core_notification {
title = "You are not allowed to carry that weapon";
iconPicture = "TF47Core\data\icons\bad_weapon.paa";
description = "%1";
};