Advertisement
Guest User

Untitled

a guest
Dec 1st, 2018
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.48 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.  
  9. class CfgServer {
  10. DatabaseName = "legendaryrp"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife]
  11. DebugMode = 0; //Enable many server/hc debugging logs. Default: 0 (1 = Enabled / 0 = Disabled)
  12. HeadlessSupport = 0; //Enable/Disable Headless client support. Default: 1 (1 = Enabled / 0 = Disabled)
  13. /*
  14. 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.
  15. 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.
  16. */
  17. };
  18.  
  19. class RscTitles {
  20. #include "dialog\progress.hpp"
  21. #include "dialog\hud_nameTags.hpp"
  22. #include "dialog\hud_stats.hpp"
  23. #include "dialog\StartScreen.hpp"
  24. };
  25.  
  26. class CfgFunctions {
  27. #include "Functions.hpp"
  28. };
  29.  
  30. class CfgSounds {
  31. sounds[] = {};
  32. class PhoneOpen {
  33. name = "PhoneOpen";
  34. sound[] = {"\sounds\PhoneOpenSound.ogg", 1.0, 1};
  35. titles[] = {};
  36. };
  37.  
  38. class PhoneClose {
  39. name = "PhoneClose";
  40. sound[] = {"\sounds\PhoneCloseSound.ogg", 1.0, 1};
  41. titles[] = {};
  42. };
  43.  
  44. class sirenLong {
  45. name = "sirenLong";
  46. sound[] = {"\sounds\sirenLong.ogg", 1.0, 1};
  47. titles[] = {};
  48. };
  49.  
  50. class medicSiren {
  51. name = "medicSiren";
  52. sound[] = {"\sounds\medicSiren.ogg", 1.0, 1};
  53. titles[] = {};
  54. };
  55.  
  56. class tazerSound {
  57. name = "tazerSound";
  58. sound[] = {"\sounds\tazer.ogg", 0.5, 1};
  59. titles[] = {};
  60. };
  61.  
  62. class flashbang {
  63. name = "flashbang";
  64. sound[] = {"\sounds\flashbang.ogg", 1.0, 1};
  65. titles[] = {};
  66. };
  67.  
  68. class mining {
  69. name = "mining";
  70. sound[] = {"\sounds\mining.ogg", 1.0, 1};
  71. titles[] = {};
  72. };
  73.  
  74. class harvest {
  75. name = "harvest";
  76. sound[] = {"\sounds\harvest.ogg", 1.0, 1};
  77. titles[] = {};
  78. };
  79.  
  80. class lockCarSound {
  81. name = "lockCarSound";
  82. sound[] = {"\sounds\carLock.ogg", 1.0, 1};
  83. titles[] = {};
  84. };
  85.  
  86. class unlockCarSound {
  87. name = "unlockCarSound";
  88. sound[] = {"\sounds\carUnlock.ogg", 0.75, 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. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement