Advertisement
Guest User

CfgSurfaces

a guest
Sep 13th, 2015
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. class CfgSurfaces
  2. {
  3. class Default {};
  4. class JWC_Santo_dirt_Surface : Default
  5. {
  6. files = "JWC_Santo_dirt_*";
  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 JWC_Santo_dry_grass_Surface : Default
  17. {
  18. files = "JWC_Santo_dry_grass_*";
  19. rough = 0.08;
  20. maxSpeedCoef = 0.9;
  21. dust = 0.75;
  22. soundEnviron = "drygrass";
  23. character = "JWC_Santo_dry_grass_Character";
  24. soundHit = "soft_ground";
  25. lucidity = 2;
  26. grassCover = 0.1;
  27. };
  28. class JWC_Santo_forest_pine_Surface : Default
  29. {
  30. files = "JWC_Santo_forest_pine_*";
  31. rough = 0.12;
  32. maxSpeedCoef = 0.8;
  33. dust = 0.4;
  34. soundEnviron = "drygrass";
  35. character = "JWC_Santo_forest_pine_Character";
  36. soundHit = "soft_ground";
  37. lucidity = 3.5;
  38. grassCover = 0.04;
  39. };
  40. class JWC_Santo_grass_green_Surface : Default
  41. {
  42. files = "JWC_Santo_grass_green_*";
  43. rough = 0.08;
  44. maxSpeedCoef = 0.9;
  45. dust = 0.15;
  46. soundEnviron = "grass";
  47. character = "JWC_Santo_grass_green_Character";
  48. soundHit = "soft_ground";
  49. lucidity = 4;
  50. grassCover = 0.05;
  51. };
  52. class JWC_Santo_soil_Surface : Default
  53. {
  54. files = "JWC_Santo_soil_*";
  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. };
  65.  
  66. class CfgSurfaceCharacters
  67. {
  68. class JWC_Santo_forest_pine_Character
  69. {
  70. probability[] = {0.05,0.012,0.01,0.1,0.05};
  71. names[] = {"JWC_Santo_BigFallenBranches_pine","JWC_Santo_BigFallenBranches_pine02","JWC_Santo_BigFallenBranches_pine03","JWC_Santo_GrassDryGroup","JWC_Santo_GrassGreenGroup"};
  72. };
  73. class JWC_Santo_grass_green_Character
  74. {
  75. probability[] = {0.92,0.07};
  76. names[] = {"JWC_Santo_GrassGreenGroup","JWC_Santo_FlowerLowYellow2"};
  77. };
  78. class JWC_Santo_dry_grass_Character
  79. {
  80. probability[] = {0.21,0.35,0.21,0.09,0.06,0.02};
  81. names[] = {"JWC_Santo_GrassDryGroup","JWC_Santo_GrassDryMediumgroup","JWC_Santo_WeedBrownTallGroup","JWC_Santo_WeedGreenTall","JWC_Santo_ThistleYellowShrub","JWC_Santo_PlantMullein"};
  82. };
  83. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement