Advertisement
Guest User

description.ext

a guest
Feb 22nd, 2015
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1.  
  2.  
  3.  
  4. aiKills = 0;
  5. briefing = 1;
  6. debriefing = 1;
  7. respawn = 3;
  8. respawnDelay = 0;
  9. RespawnDialog = 0;
  10. disabledAI = 1;
  11. enableDebugConsole = 1;
  12. allowFunctionsRecompile = 1;
  13. allowFunctionsLog = 1;
  14.  
  15.  
  16. class Header
  17. {
  18. gameType = COOP;
  19. minPlayers = 1;
  20. maxPlayers = 32;
  21. };
  22.  
  23. author = "D.Green";
  24. onLoadName = "Operation Exodus WIP";
  25. onLoadMission = "3rdID: Rock of the Marne! HOOAH!";
  26. loadScreen = "pics\logo.jpg";
  27.  
  28. class CfgNotifications
  29. {
  30. class Default
  31. {
  32. title = ""; // Tile displayed as text on black background. Filled by arguments.
  33. iconPicture = ""; // Small icon displayed in left part. Colored by "color", filled by arguments.
  34. iconText = ""; // Short text displayed over the icon. Colored by "color", filled by arguments.
  35. description = ""; // Brief description displayed as structured text. Colored by "color", filled by arguments.
  36. color[] = {1,1,1,1}; // Icon and text color
  37. duration = 5; // How many seconds will the notification be displayed
  38. priority = 0; // Priority; higher number = more important; tasks in queue are selected by priority
  39. difficulty[] = {}; // Required difficulty settings. All listed difficulties has to be enabled
  40. };
  41. class TaskAssigned
  42. {
  43. title = "TASK ASSIGNED";
  44. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  45. description = "%2";
  46. color[] = {1,1,1,1};
  47. priority = 0;
  48. };
  49. class TaskSucceeded
  50. {
  51. title = "TASK SUCCEEDED";
  52. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  53. description = "%2";
  54. color[] = {0.6,0.8,0.4,1};
  55. priority = 1;
  56. };
  57. class TaskFailed
  58. {
  59. title = "TASK FAILED";
  60. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  61. description = "%2";
  62. color[] = {1,0.1,0,1};
  63. priority = 1;
  64. };
  65. class TaskCanceled
  66. {
  67. title = "TASK CANCELED";
  68. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  69. description = "%2";
  70. color[] = {0.75,0.75,0.75,1};
  71. priority = 1;
  72. };
  73.  
  74. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement