Advertisement
Guest User

cring_iwagi_surfaces-1608281149

a guest
Aug 28th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. class CfgSurfaces
  2. {
  3. class Default {};
  4. class cring_iwagi_thingrass_surface : Default
  5. {
  6. files = "cring_iwagi_thingrass_*";
  7. rough = 0.08;
  8. maxSpeedCoef = 0.9;
  9. dust = 0.75;
  10. soundEnviron = "dirt";
  11. character = "cring_iwagi_thingrass_character";
  12. soundHit = "hard_ground";
  13. lucidity = 1;
  14. grassCover = 0.1;
  15. };
  16. class cring_iwagi_dirt_surface : Default
  17. {
  18. files = "cring_iwagi_dirt_*";
  19. rough = 0.09;
  20. maxSpeedCoef = 0.9;
  21. dust = 0.9;
  22. soundEnviron = "dirt";
  23. character = "empty";
  24. soundHit = "soft_ground";
  25. lucidity = 1;
  26. grassCover = 0.03;
  27. };
  28. class cring_iwagi_drygrass_surface : Default
  29. {
  30. files = "cring_iwagi_drygrass_*";
  31. rough = 0.08;
  32. maxSpeedCoef = 0.9;
  33. dust = 0.5;
  34. soundEnviron = "drygrass";
  35. character = "cring_iwagi_drygrass_character";
  36. soundHit = "soft_ground";
  37. lucidity = 2;
  38. grassCover = 0.4;
  39. };
  40. class cring_iwagi_thickgrass_surface : Default
  41. {
  42. files = "cring_iwagi_thickgrass_*";
  43. rough = 0.08;
  44. maxSpeedCoef = 0.9;
  45. dust = 0.15;
  46. soundEnviron = "grass";
  47. character = "cring_iwagi_thickgrass_character";
  48. soundHit = "soft_ground";
  49. lucidity = 4;
  50. grassCover = 0.8;
  51. };
  52. class cring_iwagi_path_surface : Default
  53. {
  54. files = "cring_iwagi_path_*";
  55. rough = 0.09;
  56. maxSpeedCoef = 0.9;
  57. dust = 0.9;
  58. soundEnviron = "dirt";
  59. character = "empty";
  60. soundHit = "hard_ground";
  61. lucidity = 1;
  62. grassCover = 0.0;
  63. };
  64. class cring_iwagi_concrete_surface : Default
  65. {
  66. files = "cring_iwagi_concrete_*";
  67. rough = 0.09;
  68. maxSpeedCoef = 0.9;
  69. dust = 0.1;
  70. soundEnviron = "road";
  71. character = "empty";
  72. soundHit = "hard_ground";
  73. lucidity = 1;
  74. grassCover = 0.0;
  75. };
  76. };
  77.  
  78. class CfgSurfaceCharacters
  79. {
  80. class cring_iwagi_thingrass_character
  81. {
  82. probability[] = {0.08,0.1,0.1,0.02,0.07,0.08,0.03,0.02,0.012,0.01,0.3,0.1,0.07};
  83. names[] = {"cring_iwagi_weedgreentall","cring_iwagi_strthorngreen","cring_iwagi_grassgreen_groupsoft","cring_iwagi_flower_cakile","cring_iwagi_flower_brushmedium_white","cring_iwagi_flower_mediumbrush_blue","cring_iwagi_branchbig","cring_iwagi_bigfallenbranches_pine","cring_iwagi_bigfallenbranches_pine02","cring_iwagi_bigfallenbranches_pine03","cring_iwagi_grassdrygroup","cring_iwagi_grassgreengroup","cring_iwagi_flowerlowyellow2"};
  84. };
  85. class cring_iwagi_thickgrass_character
  86. {
  87. probability[] = {0.1,0.2,0.6,0.02};
  88. names[] = {"cring_iwagi_plant_greenbunch","cring_iwagi_grasscrooked","cring_iwagi_grassgreengroup","cring_iwagi_flowerlowyellow2"};
  89. };
  90. class cring_iwagi_drygrass_character
  91. {
  92. probability[] = {0.21,0.35,0.21,0.09,0.06,0.02};
  93. names[] = {"cring_iwagi_grassdrygroup","cring_iwagi_grassdrymediumgroup","cring_iwagi_weedbrowntallgroup","cring_iwagi_weedgreentall","cring_iwagi_thistleyellowshrub","cring_iwagi_plantmullein"};
  94. };
  95. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement