Guest User

Untitled

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