Advertisement
Guest User

Untitled

a guest
May 12th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. class CfgPatches {
  2. class jtv_core {
  3. units[] = {};
  4. weapons[] = {};
  5. requiredVersion = 0.1;
  6. requiredAddons[] = {"A3_Characters_F","A3_Ui_F"};
  7. };
  8. };
  9.  
  10. class CfgSounds {
  11. sounds[] = {};
  12.  
  13. class sirenLong {
  14. name = "sirenLong";
  15. sound[] = {"\jtv_core\son\sirenLong.ogg", 1.0, 1};
  16. titles[] = {};
  17. };
  18.  
  19. class medicSiren {
  20. name = "medicSiren";
  21. sound[] = {"\jtv_core\son\medicSiren.ogg", 1.0, 1};
  22. titles[] = {};
  23. };
  24.  
  25. class tazerSound {
  26. name = "tazerSound";
  27. sound[] = {"\jtv_core\son\tazer.ogg", 0.5, 1};
  28. titles[] = {};
  29. };
  30.  
  31. class flashbang {
  32. name = "flashbang";
  33. sound[] = {"\jtv_core\son\flashbang.ogg", 1.0, 1};
  34. titles[] = {};
  35. };
  36.  
  37. class mining {
  38. name = "mining";
  39. sound[] = {"\jtv_core\son\mining.ogg", 1.0, 1};
  40. titles[] = {};
  41. };
  42.  
  43. class harvest {
  44. name = "harvest";
  45. sound[] = {"\jtv_core\son\harvest.ogg", 1.0, 1};
  46. titles[] = {};
  47. };
  48.  
  49. class lockCarSound {
  50. name = "lockCarSound";
  51. sound[] = {"\jtv_core\son\carLock.ogg", 1.0, 1};
  52. titles[] = {};
  53. };
  54.  
  55. class unlockCarSound {
  56. name = "unlockCarSound";
  57. sound[] = {"\jtv_core\son\carUnlock.ogg", 0.75, 1};
  58. titles[] = {};
  59. };
  60. };
  61.  
  62. class CfgMusic
  63. {
  64. tracks[]={};
  65.  
  66. class france
  67. {
  68. name = "france";
  69. sound[] = {"\jtv_core\son\francais.ogg", db+5, 1.0};
  70. };
  71. class allemand
  72. {
  73. name = "allemand";
  74. sound[] = {"\jtv_core\son\francais.ogg\allemand.ogg", db+5, 1.0};
  75. };
  76. class mort
  77. {
  78. name = "mort";
  79. sound[] = {"\jtv_core\son\francais.ogg\jaiglisser.ogg", db+10, 1.0};
  80. };
  81. class courant
  82. {
  83. name = "courant";
  84. sound[] = {"\jtv_core\son\francais.ogg\courant.ogg", db+5, 1.0};
  85. };
  86.  
  87.  
  88. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement