Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.75 KB | None | 0 0
  1. disableChannels[] = {{0,true,true},{1,true,true},{2,true,true}}; // Disabled text and voice for global, side, and command channels. Syntax: disableChannels[] = {{channelID<number>, disableChat<bool>, disableVoice<bool>}};
  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. #include "scripts\autosave\Master.hpp"
  10.  
  11. class CfgServer {
  12. DatabaseName = "serveur_dev"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife]
  13. DebugMode = 0; //Enable many server/hc debugging logs. Default: 0 (1 = Enabled / 0 = Disabled)
  14. HeadlessSupport = 0; //Enable/Disable Headless client support. Default: 1 (1 = Enabled / 0 = Disabled)
  15. /*
  16. 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.
  17. 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.
  18. */
  19. };
  20.  
  21. class RscTitles {
  22. #include "dialog\progress.hpp"
  23. #include "dialog\hud_nameTags.hpp"
  24. #include "dialog\hud_stats.hpp"
  25. #include "The-Programmer\GPS\RscTitles.hpp"
  26. };
  27.  
  28. class CfgFunctions {
  29. #include "Functions.hpp"
  30. };
  31.  
  32. class CfgSounds {
  33. sounds[] = {};
  34. #include "The-Programmer\Iphone_X\Sounds.hpp"
  35. class sirenLong {
  36. name = "sirenLong";
  37. sound[] = {"\sounds\sirenLong.ogg", 1.0, 1};
  38. titles[] = {};
  39. };
  40.  
  41. class medicSiren {
  42. name = "medicSiren";
  43. sound[] = {"\sounds\medicSiren.ogg", 1.0, 1};
  44. titles[] = {};
  45. };
  46.  
  47. class tazerSound {
  48. name = "tazerSound";
  49. sound[] = {"\sounds\tazer.ogg", 0.5, 1};
  50. titles[] = {};
  51. };
  52.  
  53. class flashbang {
  54. name = "flashbang";
  55. sound[] = {"\sounds\flashbang.ogg", 1.0, 1};
  56. titles[] = {};
  57. };
  58.  
  59. class mining {
  60. name = "mining";
  61. sound[] = {"\sounds\mining.ogg", 1.0, 1};
  62. titles[] = {};
  63. };
  64.  
  65. class harvest {
  66. name = "harvest";
  67. sound[] = {"\sounds\harvest.ogg", 1.0, 1};
  68. titles[] = {};
  69. };
  70.  
  71. class lockCarSound {
  72. name = "lockCarSound";
  73. sound[] = {"\sounds\carLock.ogg", 1.0, 1};
  74. titles[] = {};
  75. };
  76.  
  77. class unlockCarSound {
  78. name = "unlockCarSound";
  79. sound[] = {"\sounds\carUnlock.ogg", 0.75, 1};
  80. titles[] = {};
  81. };
  82.  
  83. class sonnerie {
  84. name = "sonnerie";
  85. sound[] = {"The-Programmer\Phone\sons\sonnerie.ogg", 1, 1, 5};
  86. titles[] = {};
  87. };
  88.  
  89. class CfgDebriefing {
  90. class NotWhitelisted {
  91. title = "$STR_NotWhitelisted_Title";
  92. subtitle = "$STR_NotWhitelisted_SubTitle";
  93. description = "$STR_NotWhitelisted_Descript";
  94. pictureBackground = "";
  95. picture = "";
  96. pictureColor[] = {0,0.3,0.6,1};
  97. };
  98.  
  99. class Blacklisted {
  100. title = "$STR_Blacklisted_Title";
  101. subtitle = "$STR_Blacklisted_SubTitle";
  102. description = "$STR_Blacklisted_Descript";
  103. pictureBackground = "";
  104. picture = "";
  105. pictureColor[] = {0,0.3,0.6,1};
  106. };
  107.  
  108. class SpyGlass {
  109. title = "$STR_SpyDetect_Title";
  110. subTitle = "$STR_SpyDetect_SubTitle";
  111. description = "$STR_SpyDetect_Descript";
  112. pictureBackground = "";
  113. picture = "";
  114. pictureColor[] = {0,0.3,0.6,1};
  115. };
  116.  
  117. class kick {
  118. title = "Global banned";
  119. description = "You're not allowed to join this server cause you're banned by the-programmer.com";
  120. };
  121. };
  122.  
  123. class CfgNotifications {
  124. class MedicalRequestEmerg {
  125. title = "$STR_MedicalRequestEmerg_Title";
  126. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  127. description = "%1";
  128. duration = 5;
  129. priority = 7;
  130. };
  131.  
  132. class DeliveryAssigned {
  133. title = "$STR_DeliveryAssigned_Title";
  134. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  135. description = "%1";
  136. duration = 10;
  137. priority = 7;
  138. };
  139.  
  140. class DeliveryFailed {
  141. title = "$STR_DeliveryFailed_Title";
  142. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskiconfailed_ca.paa";
  143. description = "%1";
  144. duration = 7;
  145. priority = 7;
  146. };
  147.  
  148. class DeliverySucceeded {
  149. title = "$STR_DeliverySucceeded_Title";
  150. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcondone_ca.paa";
  151. description = "%1";
  152. duration = 6;
  153. priority = 6;
  154. };
  155.  
  156. class TextMessage {
  157. title = "$STR_TextMessage_Title";
  158. iconPicture = "icons\ico_messageNew.paa";
  159. description = "%1";
  160. duration = 10;
  161. priority = 6;
  162. };
  163.  
  164. class PoliceDispatch {
  165. title = "$STR_PoliceDispatch_Title";
  166. iconPicture = "icons\ico_messagePolice.paa";
  167. description = "%1";
  168. duration = 10;
  169. priority = 6;
  170. };
  171.  
  172. class AdminDispatch {
  173. title = "$STR_AdminDispatch_Title";
  174. iconPicture = "icons\ico_messageAdmin.paa";
  175. description = "%1";
  176. duration = 10;
  177. priority = 6;
  178. };
  179.  
  180. class AdminMessage {
  181. title = "$STR_AdminMessage_Title";
  182. iconPicture = "icons\ico_messageAdmin.paa";
  183. description = "%1";
  184. duration = 10;
  185. priority = 5;
  186. };
  187. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement