Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 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. "zspitter"
  30. {
  31. "name" "witch"
  32. "path" "models/player/techknow/left4dead/witch.mdl"
  33. "team" "zombies"
  34. "access" "public"
  35. "group" ""
  36. }
  37.  
  38. "hunter"
  39. {
  40. "name" "hunter"
  41. "path" "models/player/techknow/left4dead/hunter.mdl"
  42. "team" "zombies"
  43. "access" "public"
  44. "group" ""
  45. }
  46.  
  47. "smoker"
  48. {
  49. "name" "smoker"
  50. "path" "models/player/techknow/left4dead/smoker.mdl"
  51. "team" "zombies"
  52. "access" "public"
  53. "group" ""
  54. }
  55.  
  56. "t_guerilla"
  57. {
  58. "name" "spitter"
  59. "path" "models/player/kuristaja/l4d2/spitter/spitter.mdl"
  60. "team" "zombies"
  61. "access" "public"
  62. "group" ""
  63. }
  64. "uchylak"
  65. {
  66. "name" "uchylak"
  67. "path" "models/player/nejakejuchyl.mdl"
  68. "team" "human"
  69. "access" "public"
  70. "group" ""
  71. }
  72.  
  73. // Special model examples:
  74. // -----------------------
  75.  
  76. // Only admins can use this zombie model.
  77. //"admin_zombie"
  78. //{
  79. // "name" "1337model"
  80. // "path" "models/player/adminmodels/"
  81. // "team" "zombies"
  82. // "access" "admins"
  83. // "group" ""
  84. //}
  85.  
  86. // Only members of the zr_vip group in SourceMod can use this human model.
  87. //"vip_human"
  88. //{
  89. // "name" "vipmodel"
  90. // "path" "models/player/vip/"
  91. // "team" "humans"
  92. // "access" "group"
  93. // "group" "zr_vip"
  94. //}
  95.  
  96. // This model will be excluded from public random selections. Only classes
  97. // that use "random_hidden" or explicit specify this model will be able to use it.
  98. //"hidden"
  99. //{
  100. // "name" "hiddenmodel"
  101. // "path" "models/player/"
  102. // "team" "humans"
  103. // "access" "hidden"
  104. // "group" ""
  105. //}
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement