Advertisement
Guest User

Untitled

a guest
Feb 17th, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. /*
  2.  
  3. File : Main Configuration file for Snorkis_Kiwimap
  4. Author : Snorkis1
  5. Version : 1.0
  6.  
  7. */
  8.  
  9. class CfgPatches
  10. {
  11. class Snorkis_Kiwimap_Addon
  12. {
  13. units[] = {""};
  14. weapons[] = {};
  15. requiredVersion = 1.0;
  16. requiredAddons[] = {"A3_Data_F","A3_Roads_F","A3_Structures_F","A3_Map_Data"};
  17. author = "Snorkis1";
  18. };
  19. };
  20.  
  21.  
  22. class CfgWorlds
  23. {
  24. class CAWorld;
  25.  
  26. class Stratis: CAWorld
  27. {
  28. class Grid;
  29. class DefaultClutter;
  30. };
  31.  
  32. class snorkis_kiwimap: Stratis
  33. {
  34. cutscenes[] = {};
  35. description = "Kiwimap";
  36. worldName = "snorkis_kiwimap\snorkis_kiwimap.wrp";
  37. startTime = "11:00";
  38. startDate = "05/03/2001";
  39. startWeather = 0.2;
  40. startFog = 0.0;
  41. forecastWeather = 0.6;
  42. forecastFog = 0.0;
  43. centerPosition[] = {2560,2560,500};
  44. seagullPos[] = {2560,2560,500};
  45. longitude = 65;
  46. latitude = -34;
  47. elevationOffset = 2000;
  48. envTexture = "A3\Data_f\env_land_ca.tga";
  49. minTreesInForestSquare = 2;
  50. minRocksInRockSquare = 2;
  51. newRoadsShape = "";
  52. ilsPosition[] = {1024,1024};
  53. ilsDirection[] = {0.5075,0.08,-0.8616};
  54. ilsTaxiIn[] = {};
  55. ilsTaxiOff[] = {};
  56. drawTaxiway = 0;
  57.  
  58. class SecondaryAirports {};
  59.  
  60. class Sea
  61. {
  62. seaTexture = "a3\data_f\seatexture_co.paa";
  63. seaMaterial = "#water";
  64. shoreMaterial = "#shore";
  65. shoreFoamMaterial = "#shorefoam";
  66. shoreWetMaterial = "#shorewet";
  67. WaterMapScale = 20;
  68. WaterGrid = 50;
  69. MaxTide = 0;
  70. MaxWave = 0;
  71. SeaWaveXScale = "2.0/50";
  72. SeaWaveZScale = "1.0/50";
  73. SeaWaveHScale = 2.0;
  74. SeaWaveXDuration = 5000;
  75. SeaWaveZDuration = 10000;
  76. };
  77.  
  78. /*
  79. class OutsideTerrain
  80. {
  81. satellite = "jsp\abc_sample\Data\s_satout_co.paa";
  82. enableTerrainSynth = 1;
  83. class Layers
  84. {
  85. class Layer0
  86. {
  87. nopx = "jsp\abc_sample\data\abc_sample_grass_green_nopx.paa";
  88. texture = "jsp\abc_sample\data\abc_sample_grass_green_co.paa";
  89. };
  90. };
  91. };
  92. */
  93.  
  94. class Grid: Grid
  95. {
  96. offsetX = 0;
  97. offsetY = 5120;
  98. class Zoom1
  99. {
  100. zoomMax = 0.15;
  101. format = "XY";
  102. formatX = "000";
  103. formatY = "000";
  104. stepX = 100;
  105. stepY = -100;
  106. };
  107. class Zoom2
  108. {
  109. zoomMax = 0.85;
  110. format = "XY";
  111. formatX = "00";
  112. formatY = "00";
  113. stepX = 1000;
  114. stepY = -1000;
  115. };
  116. class Zoom3
  117. {
  118. zoomMax = 1e+030.0;
  119. format = "XY";
  120. formatX = "0";
  121. formatY = "0";
  122. stepX = 10000;
  123. stepY = -10000;
  124. };
  125. };
  126.  
  127. #include "cfgClutter.hpp"
  128.  
  129. class Names
  130. {
  131. #include "snorkis_kiwimap.hpp"
  132. };
  133. };
  134.  
  135.  
  136. class CfgWorldList
  137. {
  138. class snorkis_kiwimap{};
  139. };
  140.  
  141.  
  142. class CfgMissions
  143. {
  144. class Cutscenes
  145. {
  146. };
  147. };
  148.  
  149.  
  150. #include "cfgSurfaces.hpp"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement