Advertisement
Guest User

beastx ext

a guest
Oct 14th, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. author = "Epoch Mod Team";
  2. class Header
  3. {
  4. gameType = Sandbox;
  5. minPlayers = 1;
  6. maxPlayers = 100;
  7. };
  8. respawn = "BASE";
  9. respawnDelay = 600;
  10. respawnDialog = 0;
  11.  
  12. onLoadMission= "Epoch";
  13. OnLoadIntro = "Welcome to Epoch Mod";
  14. loadScreen = "\x\addons\a3_epoch_assets\pictures\loadScreen_ca.paa";
  15. OnLoadIntroTime = False;
  16. OnLoadMissionTime = False;
  17. onLoadName = "Epoch Mod";
  18. disabledAI = true;
  19. scriptedPlayer = 1;
  20. disableChannels[]={0,1,2,6};
  21. enableItemsDropping = 0;
  22. briefing = 0;
  23. debriefing = 0;
  24. enableDebugConsole = 0;
  25. joinUnassigned = 0;
  26. respawnOnStart = 0;
  27. forceRotorLibSimulation = 1;
  28.  
  29. corpseManagerMode = 1;
  30. corpseLimit = 10;
  31. corpseRemovalMinTime = 1200;
  32. corpseRemovalMaxTime = 3600;
  33.  
  34. wreckManagerMode = 1;
  35. wreckLimit = 2;
  36. wreckRemovalMinTime = 60;
  37. wreckRemovalMaxTime = 360;
  38.  
  39. class cfgFunctions
  40. {
  41. class A3E
  42. {
  43. tag = "EPOCH";
  44. class Client
  45. {
  46. file = "\x\addons\a3_epoch_code\init";
  47. class init
  48. {
  49. preInit = 1;
  50. };
  51. class postinit
  52. {
  53. postInit = 1;
  54. };
  55. };
  56. };
  57. };
  58.  
  59.  
  60. class CfgRemoteExec
  61. {
  62. class Functions
  63. {
  64. mode = 1;
  65. jip = 0;
  66. class EPOCH_server_save_vehicles {
  67. allowedTargets=2;
  68. jip = 0;
  69. };
  70. };
  71. class Commands {mode=0;};
  72. };
  73. class CfgEpochSapper
  74. {
  75. detonateDistMax = 8; //Random distance between 3m and this number at which sapper detonates. Min value = 4
  76. groanTrig = 16; //Percentage chance of a groan. Min value = 4
  77. sRange = 300; //Distance from target over which sapper will dispose. Range within which sapper code will be aware of targets. Distance up to which sapper will attempt to find a spot to hide in. Min Value = 150.
  78. smellDist = 24; //Distance up to which sapper can smell. Used to decide if sapper can see target when deciding to charge and influences target selection. Is influenced by wind direction. Min Value = 8.
  79. };
  80.  
  81. class CfgEpochUAV
  82. {
  83. UAVMinDist = 48; //Minimum distance to choose next position when roaming. Min Value = 8.
  84. UAVMaxDist = 180; //Maximum distance to choose next position when roaming. Min Value = 42 / Max Value = 400.
  85. UAVHeight = 100; //Set height when roaming, slight randomness is applied to this value. UAV will choose own height when locked onto target. Min Value = 42 / Max Value = 280. UAV can still spot targets from height !
  86. };
  87.  
  88. class CfgEpochAirDrop
  89. {
  90. AirDropFreq = 1200; //AirDropChance, to decide if Air drop occurs, will only be checked once per AirDropFreq time period, for each player. Min value = 120.
  91. AirDropChance = 6; //Percentage chance of air drop, for current player. Checked every AirDropFreq and upon antagonists spawn trigger. -1 To disable.
  92. };
  93.  
  94. class CfgEpochCloak
  95. {
  96. cRange = 300; //Distance, from target, at which Cloak will dispose. Cloak is also aware of players within this range. (Min: 60 / Max: 600)
  97. cAggression = 75; //Percentage chance of attack, currently a psychological attack (Cultist spooky voice). (Min: 1 / Max: 100)
  98. attackFrequency = 120; //One attack only per this period. (Min: 120)
  99. attackDistance = 38; // Distance, from target, up to which Cloak will attack. Lower for less vocals. (Min: 16)
  100. targetChangeFrequency = 42; //Cloak will only attempt to change target once per this period. Make Higher to stick to first target player. (Min: 42)
  101. teleportChance = 66; //Chance for cloak to teleport. (Min: 1)
  102. hoverFrequency = 1280; //Cloak has new hover attack. When player is above cloak, and at a distance, cloak will float to player and teleport attack. Only perform one of these moves per this period. (Min: 240)
  103. };
  104.  
  105. class VEMF_Reloaded
  106. {
  107. tag = "VEMFr";
  108. class VEMFclient
  109. {
  110. file = "VEMFr_client\functions";
  111. class clientMessage {};
  112. class clientInit { postInit = 1; };
  113. };
  114. };
  115.  
  116. class RscTitles
  117. {
  118. #include "VEMFr_client\gui\hpp_mainVEMFrClient.hpp"
  119. };
  120.  
  121. class cfgMusic{
  122. class intro {
  123. name = "intro";
  124. sound[] = {"IntroSong.ogg", db+1,1};
  125. };
  126. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement