Advertisement
Guest User

Untitled

a guest
May 29th, 2010
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. //****************************************************************************
  2. // PROPERTIES TABLE
  3. //****************************************************************************
  4. //
  5. // The current maxium of items is 256. This is due the information being saved
  6. // on a fixed array, but guess it's quite a lot.
  7. //
  8. // PLEASE DO NOT USE ANY OF THE VALVE HATS. Valve does not allow the use of their
  9. // official/promotional models by third party extensions. Please only use custom
  10. // hats and models with this plugin.
  11. //
  12. // Indexes: Item definition index, tells the game wich is the equivalent hat for
  13. // each hat. It's necessary to setup this if you want a concrete item name appear
  14. // on the overlay. The valid item indexes are:
  15. //
  16. // 47 - Afro Hat
  17. // 48 - Mining Hat
  18. // 49 - Football Helmet
  19. // 50 - Medic Helmet
  20. // 51 - Pyro Hat
  21. // 52 - Batter's Helmet
  22. // 53 - Sniper Hat
  23. // 54 - Soldier Hat
  24. // 55 - Spy hat
  25. // 94 - Engineer Cowboy Hat
  26. // 95 - Engineer Train Hat
  27. // 96 - Heavy Ushanka Hat
  28. // 97 - Heavy Stocking Cap
  29. // 98 - Soldier Pot Hat
  30. // 99 - Soldier Viking Hat
  31. // 100 - Demo Scott Hat
  32. // 101 - Medic Tyrolean Hat
  33. // 102 - Pyro Chicken Hat
  34. // 103 - Spy Camera Beard
  35. // 104 - Medic Mirror Hat
  36. // 105 - Pyro Fireman Helmet
  37. // 106 - Scout Bonk Helmet (Automatically hides Hat and Headphones)
  38. // 107 - Scout Newsboy Cap (Automatically hides Hat and Headphones)
  39. // 108 - Spy Derby Hat
  40. // 109 - Sniper Straw Hat (Automatically hides Hat)
  41. // 110 - Sniper Jarate Headband (Automatically hides Hat)
  42. // 120 - Demo Top Hat
  43. //
  44. // There are other hats (well, hat-less hats) wich aren't supported, but you could
  45. // mimic them through the new set of flags, and using a "void" model.
  46. //
  47. // Flags:
  48. // +-----------------------+------------------------------------------------------+
  49. // | FLAGS | DESCRIPTION |
  50. // +-----------------------+------------------------------------------------------+
  51. // | USER_DEFAULT | Sets the wearable as default for common users |
  52. // | ADMIN_DEFAULT | Sets the wearable as the admin default |
  53. // | ADMIN_ONLY | This hat is wearable only by admins |
  54. // | HIDDEN | Item won't be shown on the list, but will be usable |
  55. // | | through commands. |
  56. // | INVISIBLE | Model isn't rendered. |
  57. // +------------------------------------------------------------------------------+
  58. // | HIDE_SCOUT_HAT | Hides Scout's hat. |
  59. // | HIDE_SCOUT_HEADPHONES | Hides Scout's headphones. |
  60. // | HIDE_ENGINEER_HELMET | Hides Engineer's helmet. |
  61. // | HIDE_SNIPER_HAT | Hides Sniper's hat. |
  62. // | HIDE_SOLDIER_HELMET | Hides Soldier's helmet. |
  63. // | SHOW_SOLDIER_MEDAL | Show's Soldier's medal (11,111, huh, VALVe?) |
  64. // +-----------------------+------------------------------------------------------+
  65. //
  66. // Classes:
  67. // +---------------------+---------------------+---------------------+
  68. // | CLASS | CLASS | CLASS |
  69. // +---------------------+---------------------+---------------------+
  70. // | SCOUT | SNIPER | SOLDIER |
  71. // | DEMOMAN | MEDIC | HEAVY |
  72. // | PYRO | SPY | ENGINEER |
  73. // +---------------------+---------------------+---------------------+
  74. // | ALL |
  75. // +---------------------+
  76. //
  77. // Slots:
  78. // +---------------------+
  79. // | SLOTS |
  80. // +---------------------+
  81. // | 1 |
  82. // | 2 |
  83. // | 3 |
  84. // +---------------------+
  85. //
  86. //****************************************************************************
  87.  
  88. "Equipment Management - Item list"
  89. {
  90. "Pedobear"
  91. {
  92. "index" "47"
  93. "model" "models/rss-custom/hats/pedobear/pedobear.mdl"
  94. "flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
  95. "classes" "ALL"
  96. "teams" "ALL"
  97. "slot" "1"
  98. }
  99. "Kamina's Glasses"
  100. {
  101. "index" "48"
  102. "model" "models/rss-custom/hats/PFG/coolshades.mdl"
  103. "flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
  104. "classes" "ALL"
  105. "teams" "ALL"
  106. "slot" "1"
  107. }
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement