Guest User

Untitled

a guest
Feb 20th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.83 KB | None | 0 0
  1. disableChannels[]={0,1,2};
  2.  
  3. #include "Config_Spyglass.hpp"
  4. #include "CfgRemoteExec.hpp"
  5. #include "dialog\MasterHandler.hpp"
  6. #include "Config_Master.hpp"
  7.  
  8. class CfgServer {
  9. DatabaseName = "altislife"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife]
  10. DebugMode = 0; //Enable many server/hc debugging logs. Default: 0 (1 = Enabled / 0 = Disabled)
  11. HeadlessSupport = 0; //Enable/Disable Headless client support. Default: 1 (1 = Enabled / 0 = Disabled)
  12. /*
  13. 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.
  14. 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.
  15. */
  16. };
  17.  
  18. class RscTitles {
  19. #include "dialog\progress.hpp"
  20. #include "dialog\hud_nameTags.hpp"
  21. #include "dialog\hud_stats.hpp"
  22. };
  23.  
  24. class CfgFunctions {
  25. #include "Functions.hpp"
  26. };
  27.  
  28. class CfgSounds {
  29. sounds[] = {};
  30. class SirenLong {
  31. name = "SirenLong";
  32. sound[] = {"\sounds\Siren_Long.ogg", 1.0, 1};
  33. titles[] = {};
  34. };
  35.  
  36. class medicSiren {
  37. name = "medicSiren";
  38. sound[] = {"\sounds\medic_siren.ogg", 1.0, 1};
  39. titles[] = {};
  40. };
  41.  
  42. class tazersound {
  43. name = "Tazersound";
  44. sound[] = {"\sounds\tazer.ogg", 0.25, 1};
  45. titles[] = {};
  46. };
  47.  
  48. class flashbang {
  49. name = "flashbang";
  50. sound[] = {"\sounds\flashbang.ogg", 1.0, 1};
  51. titles[] = {};
  52. };
  53.  
  54. class mining {
  55. name = "mining";
  56. sound[] = {"\sounds\mining.ogg", 1.0, 1};
  57. titles[] = {};
  58. };
  59.  
  60. class harvest {
  61. name = "harvest";
  62. sound[] = {"\sounds\harvest.ogg", 1.0, 1};
  63. titles[] = {};
  64. };
  65.  
  66. class LockCarSound {
  67. name = "LockCarSound";
  68. sound[] = {"\sounds\car_lock.ogg", 0.25, 1};
  69. titles[] = {};
  70. };
  71.  
  72. class UnlockCarSound {
  73. name = "UnlockCarSound";
  74. sound[] = {"\sounds\unlock.ogg", 0.25, 1};
  75. titles[] = {};
  76. };
  77. };
  78.  
  79. class CfgDebriefing {
  80. class NotWhitelisted {
  81. title = "$STR_NotWhitelisted_Title";
  82. subtitle = "$STR_NotWhitelisted_SubTitle";
  83. description = "$STR_NotWhitelisted_Descript";
  84. pictureBackground = "";
  85. picture = "";
  86. pictureColor[] = {0,0.3,0.6,1};
  87. };
  88.  
  89. class Blacklisted {
  90. title = "$STR_Blacklisted_Title";
  91. subtitle = "$STR_Blacklisted_SubTitle";
  92. description = "$STR_Blacklisted_Descript";
  93. pictureBackground = "";
  94. picture = "";
  95. pictureColor[] = {0,0.3,0.6,1};
  96. };
  97.  
  98. class SpyGlass {
  99. title = $STR_SpyDetect_Title;
  100. subTitle = $STR_SpyDetect_SubTitle;
  101. description = $STR_SpyDetect_Descript;
  102. pictureBackground = "";
  103. picture = "";
  104. pictureColor[] = {0,0.3,0.6,1};
  105. };
  106. };
  107.  
  108. class CfgNotifications {
  109. class MedicalRequestEmerg {
  110. title = "$STR_MedicalRequestEmerg_Title";
  111. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  112. description = "%1";
  113. duration = 5;
  114. priority = 7;
  115. };
  116.  
  117. class DeliveryAssigned {
  118. title = "$STR_DeliveryAssigned_Title";
  119. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  120. description = "%1";
  121. duration = 10;
  122. priority = 7;
  123. };
  124.  
  125. class DeliveryFailed {
  126. title = "$STR_DeliveryFailed_Title";
  127. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskiconfailed_ca.paa";
  128. description = "%1";
  129. duration = 7;
  130. priority = 7;
  131. };
  132.  
  133. class DeliverySucceeded {
  134. title = "$STR_DeliverySucceeded_Title";
  135. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcondone_ca.paa";
  136. description = "%1";
  137. duration = 6;
  138. priority = 6;
  139. };
  140.  
  141. class TextMessage {
  142. title = "$STR_TextMessage_Title";
  143. iconPicture = "icons\ico_messageNew.paa";
  144. description = "%1";
  145. duration = 10;
  146. priority = 6;
  147. };
  148.  
  149. class PoliceDispatch {
  150. title = "$STR_PoliceDispatch_Title";
  151. iconPicture = "icons\ico_messagePolice.paa";
  152. description = "%1";
  153. duration = 10;
  154. priority = 6;
  155. };
  156.  
  157. class AdminDispatch {
  158. title = "$STR_AdminDispatch_Title";
  159. iconPicture = "icons\ico_messageAdmin.paa";
  160. description = "%1";
  161. duration = 10;
  162. priority = 6;
  163. };
  164.  
  165. class AdminMessage {
  166. title = "$STR_AdminMessage_Title";
  167. iconPicture = "icons\ico_messageAdmin.paa";
  168. description = "%1";
  169. duration = 10;
  170. priority = 5;
  171. };
  172. };
Add Comment
Please, Sign In to add comment