Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1. /*------onLoad------*/
  2. author="[TTT] Muetze1337 u. [TTT] LittleBassman"; //Autor der Mission (Missionsbauer)
  3. OnLoadName = "Kampange Takistan Conflict"; //Überschrift im LoadScreen (über dem Bild)
  4. onLoadMission = "OP Desert Run - Day 1"; //Beschreibung im LoadScreen (unter dem Bild)
  5. loadScreen = "title.jpg"; //Banner im LoadScreen. Bild sollte 1024x512 Pixel groß sein.
  6. OnLoadMissionTime = TRUE;
  7.  
  8. /*------Header------*/
  9. class Header
  10. {
  11. gameType = "coop" //Art der Mission (zb. COOP, COOP, TvT, usw.)
  12. minPlayers = 1; //mindestanzahl an Spielern damit die Mission starten kann
  13. maxPlayers = 56; //Anzahl der Spieler +1 für den HC
  14. };
  15.  
  16. /*------Respawn------*/
  17. respawn = 3;
  18. respawnDelay = 5;
  19. respawnDialog = false;
  20.  
  21. /*------Stuff------*/
  22. disabledAI = 1; //Deaktiviert AI in der Slotliste
  23. enableDebugConsole = 1; //erlaubt die Nutzung der DebugConsole für Admins
  24.  
  25. /*------Functions------*/
  26. #include "W_Teleporter\dialog.hpp"
  27.  
  28. class CfgFunctions
  29. {
  30.  
  31. #include "W_Teleporter\CfgFunctions.hpp"
  32. #include "spec_tfar\CfgFunctions.hpp"
  33. #include "scripts\joko_tent\CfgFunctions.hpp"
  34. #include "spec_construct\CfgFunctions.hpp"
  35. };
  36.  
  37. /*------Sounds------*/
  38. class CfgSounds
  39. {
  40. sound[] = {reveille,allahu,airhorn};
  41.  
  42. class reveille
  43. {
  44. name = "reveille";
  45. sound[] = {"sounds\reveille.ogg", +50, 1.0, 200};
  46. titles[] = {};
  47. };
  48.  
  49. class allahu
  50. {
  51. name = "allahu";
  52. sound[] = {"sounds\allahu.ogg", +3, 1.0};
  53. titles[] = {};
  54. };
  55.  
  56. class airhorn
  57. {
  58. name = "airhorn";
  59. sound[] = {"sounds\airhorn.ogg", +3, 1.0};
  60. titles[] = {};
  61. };
  62. };
  63.  
  64. /*------Pictures------*/
  65. class RscPicture {
  66. idc = -1;
  67. type = CT_STATIC;
  68. style = ST_PICTURE;
  69. colorBackground[] = {0, 0, 0, 0};
  70. colorText[] = {0, 0, 0, 0, 5};
  71. font = Bitstream;
  72. sizeEx = 0.03;
  73. };
  74.  
  75. class RscTitles
  76. {
  77. titles[] ={sergeant0,sergeant1};
  78.  
  79. class sergeant0
  80. {
  81. idd=-1;
  82. movingEnable = true;
  83. duration=15; // Dauer der Einblendung
  84. fadein=2; // Einfadezeit
  85. name = "sergeant0"; // Name im Editor
  86.  
  87. controls[]={Picture};
  88.  
  89. class Picture : RscPicture
  90. {
  91. x = 0.00; // X-Achse
  92. y = -0.10; // Y-Achse
  93. w = 1.00; // Fensterbreite
  94. h = 1.30; // Fensterhöhe
  95. text = "start\start1.jpg"; // Die Grafik mit Pfad
  96. sizeEx = 0.04;
  97. style=48;
  98. };
  99. };
  100.  
  101. class sergeant1
  102. {
  103. idd=-1;
  104. movingEnable = true;
  105. duration=5; // Dauer der Einblendung
  106. fadein=2; // Einfadezeit
  107. name = "sergeant1"; // Name im Editor
  108.  
  109. controls[]={Picture};
  110.  
  111. class Picture : RscPicture
  112. {
  113. x = 0.00; // X-Achse
  114. y = -0.10; // Y-Achse
  115. w = 1.00; // Fensterbreite
  116. h = 1.30; // Fensterhöhe
  117. text = "start\start2.jpg"; // Die Grafik mit Pfad
  118. sizeEx = 0.04;
  119. style=48;
  120. };
  121. };
  122. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement