Guest User

Untitled

a guest
Aug 10th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. class CfgSurfaces
  2. {
  3. class Default {};
  4. class myfirstmap_beach_co_Surface:Default
  5. {
  6. files = "myfirstmap_beach_co*";
  7. rough = 0.09;
  8. maxSpeedCoef = 0.9;
  9. dust = 0.5;
  10. soundEnviron = "dirt";
  11. character = "Empty";
  12. soundHit = "soft_ground";
  13. lucidity = 1;
  14. grassCover = 0.03;
  15. };
  16. class myfirstmap_grass_green_co2_dry_grass_Surface:Default
  17. {
  18. files = "myfirstmap_grass_green_co2_dry_grass*";
  19. rough = 0.08;
  20. maxSpeedCoef = 0.9;
  21. dust = 0.75;
  22. soundEnviron = "drygrass";
  23. character = "Empty";
  24. soundHit = "soft_ground";
  25. lucidity = 2;
  26. grassCover = 0.1;
  27. };
  28. class myfirstmap_gravel_co_Surface:Default
  29. {
  30. files = "myfirstmap_gravel_co*";
  31. rough = 0.12;
  32. maxSpeedCoef = 0.8;
  33. dust = 0.4;
  34. soundEnviron = "drygrass";
  35. character = "Empty";
  36. soundHit = "soft_ground";
  37. lucidity = 3.5;
  38. grassCover = 0.04;
  39. };
  40. class myfirstmap_marsh_co_Surface:Default
  41. {
  42. files = "myfirstmap_marsh_co*";
  43. rough = 0.08;
  44. maxSpeedCoef = 0.9;
  45. dust = 0.15;
  46. soundEnviron = "grass";
  47. character = "Empty";
  48. soundHit = "soft_ground";
  49. lucidity = 4;
  50. grassCover = 0.05;
  51. };
  52. class myfirstmap_mud_co_Surface:Default
  53. {
  54. files = "myfirstmap_mud_co*";
  55. rough = 0.09;
  56. maxSpeedCoef = 0.9;
  57. dust = 0.5;
  58. soundEnviron = "dirt";
  59. character = "Empty";
  60. soundHit = "hard_ground";
  61. lucidity = 1;
  62. grassCover = 0.0;
  63. };
  64. class myfirstmap_rock_co_Surface:Default
  65. {
  66. files = "myfirstmap_rock_co*";
  67. rough = 0.09;
  68. maxSpeedCoef = 0.9;
  69. dust = 0.5;
  70. soundEnviron = "dirt";
  71. character = "Empty";
  72. soundHit = "hard_ground";
  73. lucidity = 1;
  74. grassCover = 0.0;
  75. };
  76. class myfirstmap_seabed_co_Surface : Default
  77. {
  78. files = "myfirstmap_seabed_co*";
  79. rough = 0.09;
  80. maxSpeedCoef = 0.9;
  81. dust = 0.5;
  82. soundEnviron = "dirt";
  83. character = "Empty";
  84. soundHit = "hard_ground";
  85. lucidity = 1;
  86. grassCover = 0.0;
  87. };
  88. class myfirstmap_strconcrete_co_Surface : Default
  89. {
  90. files = "myfirstmap_strconcrete_co*";
  91. rough = 0.09;
  92. maxSpeedCoef = 0.9;
  93. dust = 0.5;
  94. soundEnviron = "dirt";
  95. character = "Empty";
  96. soundHit = "hard_ground";
  97. lucidity = 1;
  98. grassCover = 0.0;
  99. };
  100. class myfirstmap_strforest_pine_co_Surface : Default
  101. {
  102. files = "myfirstmap_strforest_pine_co*";
  103. rough = 0.09;
  104. maxSpeedCoef = 0.9;
  105. dust = 0.5;
  106. soundEnviron = "dirt";
  107. character = "Empty";
  108. soundHit = "hard_ground";
  109. lucidity = 1;
  110. grassCover = 0.0;
  111. };
  112. };
  113.  
  114. class CfgSurfacecharacters
  115. {
  116. class myfirstmap_grassclutter
  117. {
  118. probability[] = {0.7,0.1,0.1,0.01};
  119. names[] = {"c_summerflowers","c_grasscrookedgreen","c_grassdrylong","c_grassdrylongbunch","c_grasstall","c_ferntall_summer"};
  120. };
  121. class myfirstmap_marshclutter
  122. {
  123. probability[] = {0.1,0.3,0.05,0.03,0.02};
  124. names[] = {"c_grassdrylongbunch"};
  125. };
  126. class myfirstmap_beachclutter
  127. {
  128. probability[] = {};
  129. names[] = {};
  130. };
  131. class myfirstmap_forestclutter
  132. {
  133. names[] = {}"c_ferntall_summer","c_grasscrookedgreen","c_grassdrylong","c_grassdrylongbunch","c_weeddead","c_caluna","c_weeddead2","c_fern","c_grasscrookedforest"};
  134. probability[] = {0.2,0.1,0.2,0.001,0.003};
  135. };
  136. };
Add Comment
Please, Sign In to add comment