Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. author = "Tonic";
  2. loadScreen = "textures\armalife.jpg";
  3. joinUnassigned = 1;
  4. respawn = BASE;
  5. respawndelay = 5;
  6. disabledAI = 1;
  7. disableChannels[]={0,1,2};
  8. enableDebugConsole = 1;
  9. respawnDialog = 0;
  10. saving = 0;
  11.  
  12. class Header
  13. {
  14. gameType = RPG;
  15. minPlayers = 1;
  16. maxPlayers = 103;
  17. };
  18.  
  19. wreckLimit = 3;
  20. wreckRemovalMinTime = 60;
  21. wreckRemovalMaxTime = 320;
  22. corpseLimit = 150;
  23. corpseRemovalMinTime = 999;
  24. corpseRemovalMaxTime = 9999;
  25.  
  26. #include "Config_Spyglass.hpp"
  27. #include "CfgRemoteExec.hpp"
  28. #include "dialog\MasterHandler.hpp"
  29. #include "Config_Master.hpp"
  30. #include "infiSTAR_AdminMenu.hpp"
  31.  
  32. class RscTitles {
  33. #include "dialog\progress.hpp"
  34. #include "dialog\hud_nameTags.hpp"
  35. #include "dialog\hud_stats.hpp"
  36. #include "dialog\statusBar.hpp"
  37. };
  38.  
  39. class CfgFunctions {
  40. #include "Functions.hpp"
  41. };
  42.  
  43. class CfgSounds
  44. {
  45. sounds[] = {};
  46. class SirenLong
  47. {
  48. name = "SirenLong";
  49. sound[] = {"\sounds\Siren_Long.ogg", 1.0, 1};
  50. titles[] = {};
  51. };
  52.  
  53. class medicSiren
  54. {
  55. name = "medicSiren";
  56. sound[] = {"\sounds\medic_siren.ogg", 1.0, 1};
  57. titles[] = {};
  58. };
  59.  
  60. class tazersound
  61. {
  62. name = "Tazersound";
  63. sound[] = {"\sounds\tazer.ogg", 0.25, 1};
  64. titles[] = {};
  65. };
  66.  
  67. class flashbang
  68. {
  69. name = "flashbang";
  70. sound[] = {"\sounds\flashbang.ogg", 1.0, 1};
  71. titles[] = {};
  72. };
  73. };
  74.  
  75. class CfgDebriefing
  76. {
  77. class NotWhitelisted
  78. {
  79. title = "Mission Failed";
  80. subtitle = "You are not white-listed to use this slot";
  81. description = "You are not allowed to use this slot because you do not have the appropriate permissions, try another slot.";
  82. pictureBackground = "";
  83. picture = "";
  84. pictureColor[] = {0,0.3,0.6,1};
  85. };
  86.  
  87. class Blacklisted
  88. {
  89. title = "Mission Failed";
  90. subtitle = "You are blacklisted from cops";
  91. description = "You are not allowed to be a cop due to previous actions and the admins have removed you from being a cop.";
  92. pictureBackground = "";
  93. picture = "";
  94. pictureColor[] = {0,0.3,0.6,1};
  95. };
  96.  
  97. class SpyGlass
  98. {
  99. title = "The SpyGlass sees you";
  100. subTitle = "You were detected by the SpyGlass";
  101. description = "You were detected for cheating and have been reported to the server. Enjoy your day.";
  102. pictureBackground = "";
  103. picture = "";
  104. pictureColor[] = {0,0.3,0.6,1};
  105. };
  106. };
  107.  
  108. class CfgNotifications
  109. {
  110. class MedicalRequestEmerg
  111. {
  112. title = "EMS Requested";
  113. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  114. description = "%1";
  115. duration = 5;
  116. priority = 7;
  117. };
  118.  
  119. class DeliveryAssigned
  120. {
  121. title = "Delivery Job Accepted";
  122. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  123. description = "%1";
  124. duration = 10;
  125. priority = 7;
  126. };
  127.  
  128. class DeliveryFailed
  129. {
  130. title = "Delivery Job Failed";
  131. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskiconfailed_ca.paa";
  132. description = "%1";
  133. duration = 7;
  134. priority = 7;
  135. };
  136.  
  137. class DeliverySucceeded
  138. {
  139. title = "Delivery Job Completed";
  140. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcondone_ca.paa";
  141. description = "%1";
  142. duration = 6;
  143. priority = 6;
  144. };
  145.  
  146. class TextMessage
  147. {
  148. title = "Received A Text Message";
  149. iconPicture = "icons\messagenew.paa";
  150. description = "%1";
  151. duration = 10;
  152. priority = 6;
  153. };
  154.  
  155. class PoliceDispatch
  156. {
  157. title = "911 Dispatch Center";
  158. iconPicture = "icons\messagepolice.paa";
  159. description = "%1";
  160. duration = 10;
  161. priority = 6;
  162. };
  163.  
  164. class AdminDispatch
  165. {
  166. title = "Admin Dispatch Center";
  167. iconPicture = "icons\messageadmin.paa";
  168. description = "%1";
  169. duration = 10;
  170. priority = 6;
  171. };
  172.  
  173. class AdminMessage
  174. {
  175. title = "Admin Message";
  176. iconPicture = "icons\messageadmin.paa";
  177. description = "%1";
  178. duration = 10;
  179. priority = 5;
  180. };
  181. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement