Guest User

Untitled

a guest
Sep 7th, 2020
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.69 KB | None | 0 0
  1. disableChannels[] ={{1,false,false},{2,false,false},{3,true,true},{4,true,true},{5,true,true}};
  2. overviewText = "$STR_MISC_overviewText"; // Text to be displayed below the overviewPicture on the mission selection screen when the mission is available to play.
  3. unsafeCVL = 1; // Allows createVehicleLocal to be executed in Multiplayer
  4.  
  5. #include "CfgRemoteExec.hpp"
  6. #include "dialog\MasterHandler.hpp"
  7. #include "config\Config_Master.hpp"
  8. #include "The-Programmer\theprogrammer_dialog_master.cpp"
  9.  
  10. class CfgServer {
  11. DatabaseName = "altislife"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife]
  12. DebugMode = 0; //Enable many server/hc debugging logs. Default: 0 (1 = Enabled / 0 = Disabled)
  13. HeadlessSupport = 0; //Enable/Disable Headless client support. Default: 1 (1 = Enabled / 0 = Disabled)
  14. /*
  15. Enabled: When HeadlessSupport is set to 1 (enabled), the server will run without fault when no Headless Client is connected. However, it will support the Headless Client if you choose to connect one.
  16. Disabled: If HeadlessSupport is set to 0 (disabled), the connection of a Headless Client will make no difference. This option will increase server performance a TINY but negligible amount.
  17. */
  18. };
  19.  
  20. #include "maverick\maverick_master.cpp"
  21. class RscTitles {
  22. #include "dialog\progress.hpp"
  23. #include "dialog\hud_nameTags.hpp"
  24. #include "dialog\hud_stats.hpp"
  25. #include "maverick\maverick_titles_master.cpp"
  26. #include "The-Programmer\DrivingExam\dialogs\hud.hpp"
  27. #include "The-Programmer\GPS\RscTitles.hpp"
  28. #include "The-Programmer\AdvancedIdentity\RscTitles.hpp"
  29. };
  30.  
  31. class CfgFunctions {
  32. #include "Functions.hpp"
  33. #include "maverick\maverick_functions_master.cpp"
  34. };
  35.  
  36. class CfgSounds {
  37. sounds[] = {};
  38. class sirenLong {
  39. name = "sirenLong";
  40. sound[] = {"\sounds\sirenLong.ogg", 1.0, 1};
  41. titles[] = {};
  42. };
  43.  
  44. class medicSiren {
  45. name = "medicSiren";
  46. sound[] = {"\sounds\medicSiren.ogg", 1.0, 1};
  47. titles[] = {};
  48. };
  49.  
  50. class tazerSound {
  51. name = "tazerSound";
  52. sound[] = {"\sounds\tazer.ogg", 0.5, 1};
  53. titles[] = {};
  54. };
  55.  
  56. class flashbang {
  57. name = "flashbang";
  58. sound[] = {"\sounds\flashbang.ogg", 1.0, 1};
  59. titles[] = {};
  60. };
  61.  
  62. class mining {
  63. name = "mining";
  64. sound[] = {"\sounds\mining.ogg", 1.0, 1};
  65. titles[] = {};
  66. };
  67.  
  68. class harvest {
  69. name = "harvest";
  70. sound[] = {"\sounds\harvest.ogg", 1.0, 1};
  71. titles[] = {};
  72. };
  73.  
  74. class lockCarSound {
  75. name = "lockCarSound";
  76. sound[] = {"\sounds\carLock.ogg", 1.0, 1};
  77. titles[] = {};
  78. };
  79.  
  80. class unlockCarSound {
  81. name = "unlockCarSound";
  82. sound[] = {"\sounds\carUnlock.ogg", 0.75, 1};
  83. titles[] = {};
  84. };
  85. };
  86.  
  87. class CfgDebriefing {
  88. #include "The-Programmer\AdvancedIdentity\debriefing.sqf"
  89. class NotWhitelisted {
  90. title = "$STR_NotWhitelisted_Title";
  91. subtitle = "$STR_NotWhitelisted_SubTitle";
  92. description = "$STR_NotWhitelisted_Descript";
  93. pictureBackground = "";
  94. picture = "";
  95. pictureColor[] = {0,0.3,0.6,1};
  96. };
  97. class kick {
  98. title = "Global banned";
  99. description = "You're not allowed to join this server cause you're banned by the-programmer.com";
  100. };
  101.  
  102. class Blacklisted {
  103. title = "$STR_Blacklisted_Title";
  104. subtitle = "$STR_Blacklisted_SubTitle";
  105. description = "$STR_Blacklisted_Descript";
  106. pictureBackground = "";
  107. picture = "";
  108. pictureColor[] = {0,0.3,0.6,1};
  109. };
  110.  
  111. class SpyGlass {
  112. title = "$STR_SpyDetect_Title";
  113. subTitle = "$STR_SpyDetect_SubTitle";
  114. description = "$STR_SpyDetect_Descript";
  115. pictureBackground = "";
  116. picture = "";
  117. pictureColor[] = {0,0.3,0.6,1};
  118. };
  119. };
  120.  
  121. class CfgNotifications {
  122. class MedicalRequestEmerg {
  123. title = "$STR_MedicalRequestEmerg_Title";
  124. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  125. description = "%1";
  126. duration = 5;
  127. priority = 7;
  128. };
  129.  
  130. class DeliveryAssigned {
  131. title = "$STR_DeliveryAssigned_Title";
  132. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  133. description = "%1";
  134. duration = 10;
  135. priority = 7;
  136. };
  137.  
  138. class DeliveryFailed {
  139. title = "$STR_DeliveryFailed_Title";
  140. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskiconfailed_ca.paa";
  141. description = "%1";
  142. duration = 7;
  143. priority = 7;
  144. };
  145.  
  146. class DeliverySucceeded {
  147. title = "$STR_DeliverySucceeded_Title";
  148. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcondone_ca.paa";
  149. description = "%1";
  150. duration = 6;
  151. priority = 6;
  152. };
  153.  
  154. class TextMessage {
  155. title = "$STR_TextMessage_Title";
  156. iconPicture = "icons\ico_messageNew.paa";
  157. description = "%1";
  158. duration = 10;
  159. priority = 6;
  160. };
  161.  
  162. class PoliceDispatch {
  163. title = "$STR_PoliceDispatch_Title";
  164. iconPicture = "icons\ico_messagePolice.paa";
  165. description = "%1";
  166. duration = 10;
  167. priority = 6;
  168. };
  169.  
  170. class AdminDispatch {
  171. title = "$STR_AdminDispatch_Title";
  172. iconPicture = "icons\ico_messageAdmin.paa";
  173. description = "%1";
  174. duration = 10;
  175. priority = 6;
  176. };
  177.  
  178. class AdminMessage {
  179. title = "$STR_AdminMessage_Title";
  180. iconPicture = "icons\ico_messageAdmin.paa";
  181. description = "%1";
  182. duration = 10;
  183. priority = 5;
  184. };
  185. };
Advertisement
Add Comment
Please, Sign In to add comment