123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- class CfgNotifications
- {
- class lib_default_notification {
- duration = 10;
- soundClose = "defaultNotificationClose";
- colorIconPicture[] = {1,1,1,1};
- colorIconText[] = {1,1,1,1};
- priority = 5;
- };
- class lib_sector_captured : lib_default_notification
- {
- title = $STR_NOTIFICATION_SECTORCAPTURED_TITLE;
- description = $STR_NOTIFICATION_SECTORCAPTURED_TEXT;
- iconPicture = "res\notif\ui_notif_sec_cap.paa";
- color[] = {0,1,0,1};
- sound = "taskSucceeded";
- };
- class lib_sector_attacked : lib_default_notification
- {
- title = $STR_NOTIFICATION_SECTORATTACKED_TITLE;
- description = $STR_NOTIFICATION_SECTORATTACKED_TEXT;
- iconPicture = "res\notif\ui_notif_sec_una.paa";
- color[] = {1,1,0,1};
- sound = "taskCanceled";
- };
- class lib_sector_lost : lib_default_notification
- {
- title = $STR_NOTIFICATION_SECTORLOST_TITLE;
- description = $STR_NOTIFICATION_SECTORLOST_TEXT;
- iconPicture = "res\notif\ui_notif_sec_los.paa";
- color[] = {1,0,0,1};
- sound = "taskFailed";
- };
- class lib_sector_safe : lib_default_notification
- {
- title = $STR_NOTIFICATION_SECTORSAFE_TITLE;
- description = $STR_NOTIFICATION_SECTORSAFE_TEXT;
- iconPicture = "res\notif\ui_notif_sec_saf.paa";
- color[] = {0,0.35,1,1};
- sound = "taskUpdated";
- priority = 3;
- };
- class lib_fob_built : lib_default_notification
- {
- title = $STR_NOTIFICATION_FOBBUILT_TITLE;
- description = $STR_NOTIFICATION_FOBBUILT_TEXT;
- iconPicture = "res\notif\ui_notif_fob_new.paa";
- color[] = {0,0.35,1,1};
- sound = "taskUpdated";
- };
- class lib_fob_safe : lib_default_notification
- {
- title = $STR_NOTIFICATION_FOBSAFE_TITLE;
- description = $STR_NOTIFICATION_FOBSAFE_TEXT;
- iconPicture = "res\notif\ui_notif_fob_sec.paa";
- color[] = {0,0.35,1,1};
- sound = "taskUpdated";
- priority = 3;
- };
- class lib_fob_attacked : lib_default_notification
- {
- title = $STR_NOTIFICATION_FOBATTACKED_TITLE;
- description = $STR_NOTIFICATION_FOBATTACKED_TEXT;
- iconPicture = "res\notif\ui_notif_fob_und.paa";
- color[] = {1,1,0,1};
- sound = "taskCanceled";
- };
- class lib_fob_lost : lib_default_notification
- {
- title = $STR_NOTIFICATION_FOBLOST_TITLE;
- description = $STR_NOTIFICATION_FOBLOST_TEXT;
- iconPicture = "res\notif\ui_notif_fob_los.paa";
- color[] = {1,0,0,1};
- sound = "taskFailed";
- };
- class lib_battlegroup : lib_default_notification
- {
- title = $STR_NOTIFICATION_BATTLEGROUP_TITLE;
- description = $STR_NOTIFICATION_BATTLEGROUP_TEXT;
- iconPicture = "res\notif\ui_notif_bgp.paa";
- color[] = {1,0,0,1};
- sound = "taskFailed";
- };
- class lib_incoming : lib_battlegroup
- {
- description = $STR_NOTIFICATION_INCOMING_TEXT;
- };
- class lib_intel : lib_default_notification
- {
- title = $STR_NOTIFICATION_INTEL_TITLE;
- iconPicture = "res\notif\ui_notif_int.paa";
- color[] = {0,0.35,1,1};
- sound = "taskUpdated";
- };
- class lib_intel_prisoner : lib_intel
- {
- description = $STR_NOTIFICATION_PRISONER_TEXT;
- };
- class lib_intel_document : lib_intel
- {
- description = $STR_NOTIFICATION_DOCUMENT_TEXT;
- };
- class lib_intel_fob : lib_intel
- {
- description = $STR_NOTIFICATION_FOB_TEXT;
- };
- class lib_intel_convoy : lib_intel
- {
- description = $STR_NOTIFICATION_CONVOY_SPOTTED_TEXT;
- };
- class lib_secondary_fob_destroyed : lib_default_notification
- {
- title = $STR_NOTIFICATION_SECONDARY_TITLE;
- description = $STR_NOTIFICATION_SECONDARY_TEXT;
- iconPicture = "res\notif\ui_notif_sob.paa";
- color[] = {0,1,0,1};
- sound = "taskSucceeded";
- };
- class lib_secondary_convoy_destroyed : lib_secondary_fob_destroyed
- {
- description = $STR_NOTIFICATION_CONVOY_DESTROYED_TEXT;
- };
- class lib_reinforcements : lib_default_notification
- {
- title = $STR_NOTIFICATION_REINFORCEMENTS_TITLE;
- description = $STR_NOTIFICATION_REINFORCEMENTS_TEXT;
- iconPicture = "res\notif\ui_notif_ref.paa";
- color[] = {1,1,0,1};
- sound = "taskCanceled";
- };
- class lib_intel_sar : lib_intel
- {
- description = $STR_NOTIFICATION_SAR_STARTED;
- };
- class lib_intel_sar_failed : lib_secondary_fob_destroyed
- {
- description = $STR_NOTIFICATION_SAR_FAILED;
- color[] = {1,0,0,1};
- sound = "taskFailed";
- };
- class lib_intel_sar_succeeded : lib_secondary_fob_destroyed
- {
- description = $STR_NOTIFICATION_SAR_SUCCESS;
- };
- };
|