Advertisement
Guest User

Untitled

a guest
May 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. class CfgSurfaces
  2. {
  3. class Default{};
  4.  
  5. class aphx_sandysoil: Default
  6. {
  7. files = "aphx_dirthard*";
  8. character = "aphx_sandysoil_character";
  9. soundEnviron = "dirt";
  10. soundHit = "soft_ground";
  11. rough = 0.09;
  12. maxSpeedCoef = 0.8;
  13. grassCover = 1.0;
  14. dust = 0.9;
  15. impact = "hitGroundSoft";
  16. maxClutterColoringCoef = 1.35;
  17. AIAvoidStance = 1;
  18. };
  19.  
  20. class aphx_grass: Default
  21. {
  22. files = "aphx_dirthard*";
  23. character = "aphx_grass_character";
  24. soundEnviron = "dirt";
  25. soundHit = "soft_ground";
  26. rough = 0.09;
  27. maxSpeedCoef = 0.9;
  28. grassCover = 1.0;
  29. dust = 0.2;
  30. impact = "hitGroundSoft";
  31. maxClutterColoringCoef = 1.35;
  32. AIAvoidStance = 1;
  33. };
  34.  
  35. class aphx_darksoil: Default
  36. {
  37. files = "aphx_dirthard*";
  38. character = "aphx_darksoil_character";
  39. soundEnviron = "dirt";
  40. soundHit = "soft_ground";
  41. rough = 0.09;
  42. grassCover = 1.0;
  43. maxSpeedCoef = 0.9;
  44. dust = 0.4;
  45. impact = "hitGroundSoft";
  46. maxClutterColoringCoef = 1.35;
  47. };
  48.  
  49. class aphx_rockysoil: Default
  50. {
  51. files = "aphx_dirthard*";
  52. character = "aphx_rockysoil_character";
  53. soundEnviron = "dirt";
  54. soundHit = "soft_ground";
  55. rough = 0.09;
  56. grassCover = 1.0;
  57. maxSpeedCoef = 1;
  58. dust = 0.3;
  59. impact = "hitGroundSoft";
  60. maxClutterColoringCoef = 1.35;
  61. };
  62.  
  63.  
  64.  
  65.  
  66. };
  67. class CfgSurfaceCharacters
  68. {
  69. class aphx_sandysoil_character
  70. {
  71. probability[] = {0.91, 0.05, 0.01, 0.01, 0.01, 0.01};
  72. names[] = {"aphx_drygrass1","aphx_germaderweeds","aphx_weedshute","aphx_yellowflowerweed","aphx_purpleweed","aphx_brnweedgrp"};
  73. };
  74.  
  75. class aphx_grass_character
  76. {
  77. probability[] = {0.91, 0.05, 0.01, 0.01, 0.01, 0.01};
  78. names[] = {"aphx_drygrass1","aphx_germaderweeds","aphx_weedshute","aphx_yellowflowerweed","aphx_purpleweed","aphx_brnweedgrp"};
  79. };
  80.  
  81. class aphx_darksoil_character
  82. {
  83. probability[] = {0.91, 0.05, 0.01, 0.01, 0.01, 0.01};
  84. names[] = {"aphx_drygrass1","aphx_germaderweeds","aphx_weedshute","aphx_yellowflowerweed","aphx_purpleweed","aphx_brnweedgrp"};
  85. };
  86.  
  87. class aphx_rockysoil_character
  88. {
  89. probability[] = {0.91, 0.05, 0.01, 0.01, 0.01, 0.01};
  90. names[] = {"aphx_drygrass1","aphx_germaderweeds","aphx_weedshute","aphx_yellowflowerweed","aphx_purpleweed","aphx_brnweedgrp"};
  91. };
  92.  
  93.  
  94. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement