Advertisement
Guest User

Untitled

a guest
Nov 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.56 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.  
  4. #include "config\Config_SpyGlass.hpp"
  5. #include "CfgRemoteExec.hpp"
  6. #include "dialog\MasterHandler.hpp"
  7. #include "config\Config_Master.hpp"
  8. #include "infiSTAR_AdminMenu.hpp"
  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. class RscTitles {
  21. #include "dialog\progress.hpp"
  22. #include "dialog\hud_nameTags.hpp"
  23. #include "dialog\hud_stats.hpp"
  24. #include "The-Programmer\GPS\RscTitles.hpp"
  25. };
  26.  
  27. class CfgFunctions {
  28. #include "Functions.hpp"
  29. };
  30.  
  31. class CfgSounds {
  32. sounds[] = {};
  33. class sirenLong {
  34. name = "sirenLong";
  35. sound[] = {"\sounds\sirenLong.ogg", 1.0, 1};
  36. titles[] = {};
  37. };
  38.  
  39. class medicSiren {
  40. name = "medicSiren";
  41. sound[] = {"\sounds\medicSiren.ogg", 1.0, 1};
  42. titles[] = {};
  43. };
  44.  
  45. class tazerSound {
  46. name = "tazerSound";
  47. sound[] = {"\sounds\tazer.ogg", 0.5, 1};
  48. titles[] = {};
  49. };
  50.  
  51. class purge {
  52. name = "purge";
  53. sound[] = {"\sounds\purge.ogg",4.0,1};
  54. titles[] = {};
  55. };
  56.  
  57. class flashbang {
  58. name = "flashbang";
  59. sound[] = {"\sounds\flashbang.ogg", 1.0, 1};
  60. titles[] = {};
  61. };
  62.  
  63. class mining {
  64. name = "mining";
  65. sound[] = {"\sounds\mining.ogg", 1.0, 1};
  66. titles[] = {};
  67. };
  68.  
  69. class harvest {
  70. name = "harvest";
  71. sound[] = {"\sounds\harvest.ogg", 1.0, 1};
  72. titles[] = {};
  73. };
  74.  
  75. class lockCarSound {
  76. name = "lockCarSound";
  77. sound[] = {"\sounds\carLock.ogg", 1.0, 1};
  78. titles[] = {};
  79. };
  80.  
  81. class unlockCarSound {
  82. name = "unlockCarSound";
  83. sound[] = {"\sounds\carUnlock.ogg", 0.75, 1};
  84. titles[] = {};
  85. };
  86. };
  87.  
  88. class CfgDebriefing {
  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.  
  98. class kick {
  99. title = "Global banned";
  100. description = "You're not allowed to join this server cause you're banned by the-programmer.com"; };
  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
Advertisement