Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. class CfgGather {
  2. class Resources {
  3. class apple {
  4. amount = 5;
  5. zones[] = { "apple_1", "apple_2", "apple_3", "apple_4" };
  6. item = "";
  7. zoneSize = 30;
  8. };
  9.  
  10. class peach {
  11. amount = 5;
  12. zones[] = { "peaches_1", "peaches_2", "peaches_3", "peaches_4" };
  13. item = "";
  14. zoneSize = 30;
  15. };
  16.  
  17. class heroin_unprocessed {
  18. amount = 3;
  19. zones[] = { "heroin_1" };
  20. item = "";
  21. zoneSize = 30;
  22. };
  23.  
  24. class cocaine_unprocessed {
  25. amount = 3;
  26. zones[] = { "cocaine_1" };
  27. item = "";
  28. zoneSize = 20;
  29. };
  30.  
  31. class cannabis {
  32. amount = 3;
  33. zones[] = { "weed_1" };
  34. item = "";
  35. zoneSize = 30;
  36. };
  37. };
  38. class Minerals {
  39. class copper_unrefined {
  40. amount = 2;
  41. zones[] = { "copper_mine" };
  42. item = "pickaxe";
  43. mined[] = {"copper_unrefined"};
  44. zoneSize = 30;
  45. };
  46.  
  47. class iron_unrefined {
  48. amount = 2;
  49. zones[] = { "iron_mine" };
  50. item = "pickaxe";
  51. mined[] = { "iron_unrefined" };
  52. zoneSize = 30;
  53. };
  54.  
  55. class salt_unrefined {
  56. amount = 2;
  57. zones[] = { "salt_mine" };
  58. item = "pickaxe";
  59. mined[] = { "salt_unrefined" };
  60. zoneSize = 40;
  61. };
  62.  
  63. class sand {
  64. amount = 2;
  65. zones[] = { "sand_mine" };
  66. item = "pickaxe";
  67. mined[] = { "sand" };
  68. zoneSize = 30;
  69. };
  70.  
  71. class diamond_uncut {
  72. amount = 2;
  73. zones[] = { "diamond_mine" };
  74. item = "pickaxe";
  75. mined[] = { "diamond_uncut" };
  76. zoneSize = 30;
  77. };
  78.  
  79. class rock {
  80. amount = 2;
  81. zones[] = { "rock_quarry" };
  82. item = "pickaxe";
  83. mined[] = { "rock" };
  84. zoneSize = 30;
  85. };
  86.  
  87. class oil_unprocessed {
  88. amount = 2;
  89. zones[] = { "oil_field_1", "oil_field_2" };
  90. item = "pickaxe";
  91. mined[] = { "oil_unprocessed" };
  92. zoneSize = 30;
  93. };
  94. };
  95. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement