Advertisement
Guest User

csgoandsm alliedmodders

a guest
Dec 29th, 2017
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. // ============================================================================
  2. //
  3. // ZOMBIE:RELOADED
  4. // Model configuration
  5. //
  6. // See Model Configuration (3.5) section in the manual for detailed info.
  7. //
  8. // ============================================================================
  9. //
  10. // SHORT DESCRIPTIONS
  11. //
  12. // Attribute: Description:
  13. // ----------------------------------------------------------------------------
  14. // name Name of model file, without extension.
  15. // path Path to model files. MUST end with "/".
  16. // team Model type:
  17. // "zombies"
  18. // "humans"
  19. // access Access type:
  20. // "public" - Everyone can use the model.
  21. // "admins" - Model can only be used by admins.
  22. // "hidden" - Model is excluded from public random selections.
  23. // "motherzombies" - Model can only be used by mother zombies.
  24. // "group" - Use group authentication.
  25. // group If access is "group": A SourceMod group name. Otherwise blank ("").
  26.  
  27. "models"
  28. {
  29. "zombie_sci_hs"
  30. {
  31. "name" "zombie_sci_hs"
  32. "path" "models/player/custom_player/mapeadores/zombie_sci/"
  33. "team" "zombies"
  34. "access" "public"
  35. "group" ""
  36. }
  37. "zombie_guard_hs"
  38. {
  39. "name" "zombie_guard_hs"
  40. "path" "models/player/custom_player/mapeadores/zombie_guard/"
  41. "team" "zombies"
  42. "access" "public"
  43. "group" ""
  44. }
  45. "agrunt_hs"
  46. {
  47. "name" "agrunt_hs"
  48. "path" "models/player/custom_player/mapeadores/agrunt/"
  49. "team" "zombies"
  50. "access" "public"
  51. "group" ""
  52. }
  53. "agrunt_basic_hs"
  54. {
  55. "name" "agrunt_basic_hs"
  56. "path" "models/player/custom_player/mapeadores/agrunt_basic/"
  57. "team" "zombies"
  58. "access" "public"
  59. "group" ""
  60. }
  61. "clicker"
  62. {
  63. "name" "clicker"
  64. "path" "models/player/custom_player/clicker/"
  65. "team" "zombies"
  66. "access" "public"
  67. "group" ""
  68. }
  69. "ch_engineer"
  70. {
  71. "name" "ch_engineer"
  72. "path" "models/player/custom_player/ch_engineer/"
  73. "team" "humans"
  74. "access" "public"
  75. "group" ""
  76. }
  77. "ru_assault"
  78. {
  79. "name" "ru_assault"
  80. "path" "models/player/custom_player/ru_assault/"
  81. "team" "humans"
  82. "access" "public"
  83. "group" ""
  84. }
  85. "us_engineer"
  86. {
  87. "name" "us_engineer"
  88. "path" "models/player/custom_player/us_engineer/"
  89. "team" "humans"
  90. "access" "public"
  91. "group" ""
  92. }
  93. "combine"
  94. {
  95. "name" "combine"
  96. "path" "models/player/custom_player/mapeadores/morell/combine/"
  97. "team" "humans"
  98. "access" "public"
  99. "group" ""
  100. }
  101. "storm"
  102. {
  103. "name" "storm"
  104. "path" "models/player/custom/legacy/storm/"
  105. "team" "humans"
  106. "access" "public"
  107. "group" ""
  108. }
  109. // Special model examples:
  110. // -----------------------
  111.  
  112. // Only admins can use this zombie model.
  113. //"admin_zombie"
  114. //{
  115. // "name" "1337model"
  116. // "path" "models/player/adminmodels/"
  117. // "team" "zombies"
  118. // "access" "admins"
  119. // "group" ""
  120. //}
  121.  
  122. // Only members of the zr_vip group in SourceMod can use this human model.
  123. //"vip_human"
  124. //{
  125. // "name" "vipmodel"
  126. // "path" "models/player/vip/"
  127. // "team" "humans"
  128. // "access" "group"
  129. // "group" "zr_vip"
  130. //}
  131.  
  132. // This model will be excluded from public random selections. Only classes
  133. // that use "random_hidden" or explicit specify this model will be able to use it.
  134. //"hidden"
  135. //{
  136. // "name" "hiddenmodel"
  137. // "path" "models/player/"
  138. // "team" "humans"
  139. // "access" "hidden"
  140. // "group" ""
  141. //}
  142. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement