Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. author = "ChernaLifeTeam";
  2. onLoadName = "ChernaLife";
  3. onLoadMission = "Mode de jeu RolePlay sur Chernarus";
  4. overviewPicture = "Logo.paa";
  5. joinUnassigned = 1;
  6. respawn = BASE;
  7. respawndelay = 3;
  8. disabledAI = true;
  9. disableChannels[]={0,1,2};
  10. enableDebugConsole = 1;
  11.  
  12.  
  13. class Header
  14. {
  15. gameType = RPG;
  16. minPlayers = 1;
  17. maxPlayers = 75;
  18. };
  19.  
  20. wreckLimit = 3;
  21. wreckRemovalMinTime = 60;
  22. wreckRemovalMaxTime = 320;
  23. corpseLimit = 5;
  24. corpseRemovalMinTime = 10;
  25. corpseRemovalMaxTime = 30;
  26.  
  27. #include "dialog\MasterHandler.h"
  28.  
  29. class RscTitles
  30. {
  31. #include "dialog\ui.hpp"
  32. #include "dialog\progress.hpp"
  33. };
  34.  
  35. #include "VVS\menu.h"
  36. #include "VAS\menu.hpp"
  37.  
  38. class CfgFunctions
  39. {
  40. #include "Functions.h"
  41. #include "VVS\Functions.h"
  42. #include "VAS\cfgfunctions.hpp"
  43. };
  44.  
  45. class CfgSounds
  46. {
  47. sounds[] = {};
  48. class SirenLong
  49. {
  50. name = "SirenLong";
  51. sound[] = {"\sounds\Siren_Long.ogg", 1.0, 1};
  52. titles[] = {};
  53. };
  54. class tazersound
  55. {
  56. name = "Tazersound";
  57. sound[] = {"\sounds\tazer.ogg", 0.25, 1};
  58. titles[] = {};
  59. };
  60. };
  61.  
  62. class CfgDebriefing
  63. {
  64. class NotWhitelisted
  65. {
  66. title = "Mission Failed";
  67. subtitle = "You are not white-listed to use this slot";
  68. description = "You are not allowed to use this slot because you do not have the appropriate permissions, try another slot.";
  69. pictureBackground = "";
  70. picture = "";
  71. pictureColor[] = {0,0.3,0.6,1};
  72. };
  73.  
  74. class Blacklisted
  75. {
  76. title = "Mission Failed";
  77. subtitle = "You are blacklisted from cops";
  78. description = "You are not allowed to be a cop due to previous actions and the admins have removed you from being a cop.";
  79. pictureBackground = "";
  80. picture = "";
  81. pictureColor[] = {0,0.3,0.6,1};
  82. };
  83. };
  84.  
  85. class CfgNotifications
  86. {
  87. class DeliveryAssigned
  88. {
  89. title = "Delivery Job Accepted";
  90. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  91. description = "%1";
  92. duration = 10;
  93. priority = 7;
  94. };
  95.  
  96. class DeliveryFailed
  97. {
  98. title = "Delivery Job Failed";
  99. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskiconfailed_ca.paa";
  100. description = "%1";
  101. duration = 7;
  102. priority = 7;
  103. };
  104.  
  105. class DeliverySucceeded
  106. {
  107. title = "Delivery Job Completed";
  108. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcondone_ca.paa";
  109. description = "%1";
  110. duration = 6;
  111. priority = 6;
  112. };
  113.  
  114. class TextMessage
  115. {
  116. title = "Received A Text Message";
  117. iconPicture = "icons\messagenew.paa";
  118. description = "%1";
  119. duration = 10;
  120. priority = 6;
  121. };
  122.  
  123. class PoliceDispatch
  124. {
  125. title = "911 Dispatch Center";
  126. iconPicture = "icons\messagepolice.paa";
  127. description = "%1";
  128. duration = 10;
  129. priority = 6;
  130. };
  131.  
  132. class AdminDispatch
  133. {
  134. title = "Admin Dispatch Center";
  135. iconPicture = "icons\messageadmin.paa";
  136. description = "%1";
  137. duration = 10;
  138. priority = 6;
  139. };
  140.  
  141. class AdminMessage
  142. {
  143. title = "Admin Message";
  144. iconPicture = "icons\messageadmin.paa";
  145. description = "%1";
  146. duration = 10;
  147. priority = 5;
  148. };
  149. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement