Advertisement
Guest User

models.txt

a guest
Dec 27th, 2014
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 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. "zh1fix"
  30. {
  31. "name" "zh1fix"
  32. "path" "models/player/mapeadores/kaem/zh/"
  33. "team" "zombies"
  34. "access" "public"
  35. "group" ""
  36. }
  37.  
  38. "zh2fix"
  39. {
  40. "name" "zh2fix"
  41. "path" "models/player/mapeadores/kaem/zh/"
  42. "team" "zombies"
  43. "access" "public"
  44. "group" ""
  45. }
  46.  
  47. "zh3fix"
  48. {
  49. "name" "zh3fix"
  50. "path" "models/player/mapeadores/morell/zh/"
  51. "team" "zombies"
  52. "access" "public"
  53. "group" ""
  54. }
  55.  
  56. "ghoul"
  57. {
  58. "name" "ghoul"
  59. "path" "models/player/mapeadores/morell/ghoul"
  60. "team" "zombies"
  61. "access" "public"
  62. "group" ""
  63. }
  64.  
  65. // Special model examples:
  66. // -----------------------
  67.  
  68. // Only admins can use this zombie model.
  69. //"admin_zombie"
  70. //{
  71. // "name" "1337model"
  72. // "path" "models/player/adminmodels/"
  73. // "team" "zombies"
  74. // "access" "admins"
  75. // "group" ""
  76. //}
  77.  
  78. // Only members of the zr_vip group in SourceMod can use this human model.
  79. //"vip_human"
  80. //{
  81. // "name" "vipmodel"
  82. // "path" "models/player/vip/"
  83. // "team" "humans"
  84. // "access" "group"
  85. // "group" "zr_vip"
  86. //}
  87.  
  88. // This model will be excluded from public random selections. Only classes
  89. // that use "random_hidden" or explicit specify this model will be able to use it.
  90. //"hidden"
  91. //{
  92. // "name" "hiddenmodel"
  93. // "path" "models/player/"
  94. // "team" "humans"
  95. // "access" "hidden"
  96. // "group" ""
  97. //}
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement