zapatahacks

Untitled

Sep 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.07 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 "maverick\maverick_master.cpp"
  7. #include "Config_Master.hpp"
  8. #include "BK_FrameWork\BlackFeameWorkDIalogs\_BK_Dlg_All_IncludesDef.h"
  9. #include "BK_FrameWork\BlackFeameWorkDIalogs\_BK_Dlg_All_Includes.h"
  10.  
  11. class CfgServer {
  12. DatabaseName = "altislife"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife]
  13. DebugMode = 1; //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.  
  17. class RscTitles {
  18. #include "maverick\tuning\dialogs\titles.hpp"
  19. #include "dialog\progress.hpp"
  20. #include "dialog\hud_stats.hpp"
  21. #include "dialog\sangrado.hpp"
  22. #include "dialog\barrita.hpp"
  23. #include "dialog\DNI_dialog.hpp"
  24. #include "dialog\badgedialogv2.hpp"
  25. #include "dialog\inconsciencia.hpp"
  26. #include "maverick\talent-tree-modular\gui\_masterTitles.cpp"
  27.  
  28. };
  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\Siren_Long.ogg", 1.0, 1};
  41. titles[] = {};
  42. };
  43.  
  44. class medicSiren {
  45. name = "medicSiren";
  46. sound[] = {"\sounds\medic_siren.ogg", 1.0, 1};
  47. titles[] = {};
  48. };
  49.  
  50. class tazersound {
  51. name = "Tazersound";
  52. sound[] = {"\sounds\tazer.ogg", 0.25, 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\car_lock.ogg", 0.25, 1};
  77. titles[] = {};
  78. };
  79.  
  80. class UnlockCarSound {
  81. name = "UnlockCarSound";
  82. sound[] = {"\sounds\unlock.ogg", 0.25, 1};
  83. titles[] = {};
  84. };
  85.  
  86. class bomba {
  87. name = "bomba";
  88. sound[] = {"\sounds\bomba.ogg", 0.25, 1};
  89. titles[] = {};
  90. };
  91. };
  92.  
  93. class CfgDebriefing {
  94. class NotWhitelisted {
  95. title = "$STR_NotWhitelisted_Title";
  96. subtitle = "$STR_NotWhitelisted_SubTitle";
  97. description = "$STR_NotWhitelisted_Descript";
  98. pictureBackground = "";
  99. picture = "";
  100. pictureColor[] = {0,0.3,0.6,1};
  101. };
  102.  
  103. class Blacklisted {
  104. title = "$STR_Blacklisted_Title";
  105. subtitle = "$STR_Blacklisted_SubTitle";
  106. description = "$STR_Blacklisted_Descript";
  107. pictureBackground = "";
  108. picture = "";
  109. pictureColor[] = {0,0.3,0.6,1};
  110. };
  111.  
  112. class SpyGlass {
  113. title = $STR_SpyDetect_Title;
  114. subTitle = $STR_SpyDetect_SubTitle;
  115. description = $STR_SpyDetect_Descript;
  116. pictureBackground = "";
  117. picture = "";
  118. pictureColor[] = {0,0.3,0.6,1};
  119. };
  120. };
  121.  
  122. class CfgNotifications {
  123. class MedicalRequestEmerg {
  124. title = "$STR_MedicalRequestEmerg_Title";
  125. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  126. description = "%1";
  127. duration = 5;
  128. priority = 7;
  129. };
  130.  
  131. class DeliveryAssigned {
  132. title = "$STR_DeliveryAssigned_Title";
  133. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  134. description = "%1";
  135. duration = 10;
  136. priority = 7;
  137. };
  138.  
  139. class DeliveryFailed {
  140. title = "$STR_DeliveryFailed_Title";
  141. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskiconfailed_ca.paa";
  142. description = "%1";
  143. duration = 7;
  144. priority = 7;
  145. };
  146.  
  147. class DeliverySucceeded {
  148. title = "$STR_DeliverySucceeded_Title";
  149. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcondone_ca.paa";
  150. description = "%1";
  151. duration = 6;
  152. priority = 6;
  153. };
  154.  
  155. class TextMessage {
  156. title = "$STR_TextMessage_Title";
  157. iconPicture = "icons\ico_messageNew.paa";
  158. description = "%1";
  159. duration = 10;
  160. priority = 6;
  161. };
  162.  
  163. class PoliceDispatch {
  164. title = "$STR_PoliceDispatch_Title";
  165. iconPicture = "icons\ico_messagePolice.paa";
  166. description = "%1";
  167. duration = 10;
  168. priority = 6;
  169. };
  170.  
  171. class AdminDispatch {
  172. title = "$STR_AdminDispatch_Title";
  173. iconPicture = "icons\ico_messageAdmin.paa";
  174. description = "%1";
  175. duration = 10;
  176. priority = 6;
  177. };
  178.  
  179. class AdminMessage {
  180. title = "$STR_AdminMessage_Title";
  181. iconPicture = "icons\ico_messageAdmin.paa";
  182. description = "%1";
  183. duration = 10;
  184. priority = 5;
  185. };
  186. };
  187. #include "maverick\maverick_master.cpp"
Advertisement
Add Comment
Please, Sign In to add comment