Advertisement
Guest User

SomethingWrongArma3 v2

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.35 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. #include "The-Programmer\theprogrammer_dialog_master.cpp"
  9. #include "infiSTAR_AdminMenu.hpp"
  10.  
  11. class CfgServer {
  12. DatabaseName = "altislife"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife]
  13. DebugMode = 0; //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. 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.
  17. 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.
  18. */
  19. };
  20.  
  21. class RscTitles {
  22. #include "dialog\progress.hpp"
  23. #include "dialog\hud_nameTags.hpp"
  24. #include "dialog\hud_stats.hpp"
  25. #include "The-Programmer\AdvancedIdentity\RscTitles.hpp"
  26. };
  27.  
  28. class CfgFunctions {
  29. #include "Functions.hpp"
  30. };
  31.  
  32. class CfgSounds {
  33. sounds[] = {rap,house,rock,bip,bip2};
  34. #include "The-Programmer\Iphone_X\Sounds.hpp"
  35. class sirenLong {
  36. name = "sirenLong";
  37. sound[] = {"\sounds\sirenLong.ogg", 1.0, 1};
  38. titles[] = {};
  39. };
  40.  
  41. class medicSiren {
  42. name = "medicSiren";
  43. sound[] = {"\sounds\medicSiren.ogg", 1.0, 1};
  44. titles[] = {};
  45. };
  46.  
  47. class tazerSound {
  48. name = "tazerSound";
  49. sound[] = {"\sounds\tazer.ogg", 0.5, 1};
  50. titles[] = {};
  51. };
  52.  
  53. class flashbang {
  54. name = "flashbang";
  55. sound[] = {"\sounds\flashbang.ogg", 1.0, 1};
  56. titles[] = {};
  57. };
  58.  
  59. class mining {
  60. name = "mining";
  61. sound[] = {"\sounds\mining.ogg", 1.0, 1};
  62. titles[] = {};
  63. };
  64.  
  65. class harvest {
  66. name = "harvest";
  67. sound[] = {"\sounds\harvest.ogg", 1.0, 1};
  68. titles[] = {};
  69. };
  70.  
  71. class lockCarSound {
  72. name = "lockCarSound";
  73. sound[] = {"\sounds\carLock.ogg", 1.0, 1};
  74. titles[] = {};
  75. };
  76.  
  77. class unlockCarSound {
  78. name = "unlockCarSound";
  79. sound[] = {"\sounds\carUnlock.ogg", 0.75, 1};
  80. titles[] = {};
  81. };
  82.  
  83. class rap {
  84. name = "rap";
  85. sound[] = {A3NRP_Textures\data\TV\Media Player\Music\rap.ogg, 1, 1.0};
  86. titles[] = {};
  87. };
  88.  
  89. class house {
  90. name = "house";
  91. sound[] = {A3NRP_Textures\data\TV\Media Player\Music\house.ogg, 1, 1.0};
  92. titles[] = {};
  93. };
  94.  
  95. class rock {
  96. name = "rock";
  97. sound[] = {A3NRP_Textures\data\TV\Media Player\Music\rock.ogg, 1, 1.0};
  98. titles[] = {};
  99. };
  100.  
  101. class bip {
  102. name = "bip";
  103. sound[] = {A3NRP_Textures\data\TV\TV logo & beep\Sounds\bip.ogg, 1, 1.0};
  104. titles[] = {};
  105. };
  106.  
  107. class bip2 {
  108. name = "bip2";
  109. sound[] = {A3NRP_Textures\data\TV\TV logo & beep\Sounds\bip2.ogg, 1, 1.0};
  110. titles[] = {};
  111. };
  112. };
  113.  
  114. class CfgDebriefing {
  115. #include "The-Programmer\AdvancedIdentity\debriefing.sqf"
  116. class NotWhitelisted {
  117. title = "$STR_NotWhitelisted_Title";
  118. subtitle = "$STR_NotWhitelisted_SubTitle";
  119. description = "$STR_NotWhitelisted_Descript";
  120. pictureBackground = "";
  121. picture = "";
  122. pictureColor[] = {0,0.3,0.6,1};
  123. };
  124.  
  125. class Blacklisted {
  126. title = "$STR_Blacklisted_Title";
  127. subtitle = "$STR_Blacklisted_SubTitle";
  128. description = "$STR_Blacklisted_Descript";
  129. pictureBackground = "";
  130. picture = "";
  131. pictureColor[] = {0,0.3,0.6,1};
  132. };
  133.  
  134. class SpyGlass {
  135. title = "$STR_SpyDetect_Title";
  136. subTitle = "$STR_SpyDetect_SubTitle";
  137. description = "$STR_SpyDetect_Descript";
  138. pictureBackground = "";
  139. picture = "";
  140. pictureColor[] = {0,0.3,0.6,1};
  141. };
  142.  
  143. class kick {
  144. title = "Global banned";
  145. description = "You're not allowed to join this server cause you're banned by the-programmer.com";
  146. };
  147. };
  148.  
  149. class CfgNotifications {
  150. #include "The-Programmer\Duty_System\notifications.cpp"
  151. class MedicalRequestEmerg {
  152. title = "$STR_MedicalRequestEmerg_Title";
  153. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  154. description = "%1";
  155. duration = 5;
  156. priority = 7;
  157. };
  158.  
  159. class DeliveryAssigned {
  160. title = "$STR_DeliveryAssigned_Title";
  161. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
  162. description = "%1";
  163. duration = 10;
  164. priority = 7;
  165. };
  166.  
  167. class DeliveryFailed {
  168. title = "$STR_DeliveryFailed_Title";
  169. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskiconfailed_ca.paa";
  170. description = "%1";
  171. duration = 7;
  172. priority = 7;
  173. };
  174.  
  175. class DeliverySucceeded {
  176. title = "$STR_DeliverySucceeded_Title";
  177. iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcondone_ca.paa";
  178. description = "%1";
  179. duration = 6;
  180. priority = 6;
  181. };
  182.  
  183. class TextMessage {
  184. title = "$STR_TextMessage_Title";
  185. iconPicture = "icons\ico_messageNew.paa";
  186. description = "%1";
  187. duration = 10;
  188. priority = 6;
  189. };
  190.  
  191. class PoliceDispatch {
  192. title = "$STR_PoliceDispatch_Title";
  193. iconPicture = "icons\ico_messagePolice.paa";
  194. description = "%1";
  195. duration = 10;
  196. priority = 6;
  197. };
  198.  
  199. class AdminDispatch {
  200. title = "$STR_AdminDispatch_Title";
  201. iconPicture = "icons\ico_messageAdmin.paa";
  202. description = "%1";
  203. duration = 10;
  204. priority = 6;
  205. };
  206.  
  207. class AdminMessage {
  208. title = "$STR_AdminMessage_Title";
  209. iconPicture = "icons\ico_messageAdmin.paa";
  210. description = "%1";
  211. duration = 10;
  212. priority = 5;
  213. };
  214. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement