Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 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"
  30. {
  31. "name" "zombie"
  32. "path" "models/player/zombieskin/"
  33. "team" "zombies"
  34. "access" "public"
  35. "group" ""
  36. }
  37.  
  38. // Special model examples:
  39. // -----------------------
  40.  
  41. // Only admins can use this zombie model.
  42. //"admin_zombie"
  43. //{
  44. // "name" "1337model"
  45. // "path" "models/player/adminmodels/"
  46. // "team" "zombies"
  47. // "access" "admins"
  48. // "group" ""
  49. //}
  50.  
  51. // Only members of the zr_vip group in SourceMod can use this human model.
  52. //"vip_human"
  53. //{
  54. // "name" "vipmodel"
  55. // "path" "models/player/vip/"
  56. // "team" "humans"
  57. // "access" "group"
  58. // "group" "zr_vip"
  59. //}
  60.  
  61. // This model will be excluded from public random selections. Only classes
  62. // that use "random_hidden" or explicit specify this model will be able to use it.
  63. //"hidden"
  64. //{
  65. // "name" "hiddenmodel"
  66. // "path" "models/player/"
  67. // "team" "humans"
  68. // "access" "hidden"
  69. // "group" ""
  70. //}
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement