Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. // This is an example tournament mode item whitelist. Rename the file to item_whitelist.txt to
  2.  
  3. allow the game to find it.
  4. // Note that the whitelist is only updated when a map is loaded, or the mp_tournament_restart
  5.  
  6. command is issued.
  7. //
  8. // To find a list of definition names, use the "item_show_whitelistable_definitions" console
  9.  
  10. command.
  11. //
  12. // If the game finds the whitelist file, all non-base TF items are marked as illegal by default.
  13. // You can specify the following optional parameter to make it so that items are legal by default:
  14. // "unlisted_items_default_to" "1"
  15. //
  16. // Then provide a list of item names in this format:
  17. // <Item Definition Name> <"1" or "0">
  18. // <Item Definition Name> <"1" or "0">
  19. // ...
  20. //
  21. // Items set to "1" will be allowed, items set to "0" will be marked as illegal.
  22. //
  23.  
  24. "item_whitelist"
  25. {
  26. "unlisted_items_default_to" "1"
  27.  
  28. // medic
  29. "The Vita-Saw" "0"
  30.  
  31. // scout
  32. "The Sandman" "0"
  33. "The Shortstop" "0"
  34. "Mad Milk" "0"
  35. "The Candy Cane" "0"
  36. "The Boston Basher" "0"
  37. "The Force-a-Nature" "0"
  38. "Bonk! Atomic Punch" "0"
  39.  
  40.  
  41. // demoman
  42. "The Ullapool Caber" "0"
  43. "The Loch-n-Load" "0"
  44. "The Claidheamohmor" "0"
  45. "Stickybomb Jumper" "0"
  46. "The Chargin' Targe" "0"
  47. "The Eyelander" "0"
  48. "The Pain Train" "0"
  49. "The Scottish Resistance" "0"
  50.  
  51. // engineer
  52. "The Wrangler" "0"
  53. "The Jag" "0"
  54. "The Frontier Justice" "0"
  55. "The Gunslinger" "0"
  56. "The Southern Hospitality" "0"
  57.  
  58. // heavy
  59. "Natascha" "0"
  60. "Gloves of Running Urgently" "0"
  61. "The Buffalo Steak Sandvich" "0"
  62. "The Brass Beast" "0"
  63. "Warrior's Spirit" "0"
  64. "Fists of Steel" "0"
  65. "The Sandvich" "0"
  66. "The Killing Gloves of Boxing" "0"
  67.  
  68. // pyro
  69. "The Powerjack" "0"
  70. "The Back Scratcher" "0"
  71. "The Flare Gun" "0"
  72. "The Backburner" "0"
  73. "The Homewrecker" "0"
  74.  
  75.  
  76. // sniper
  77. "The Sydney Sleeper" "0"
  78. "The Huntsman" "0"
  79. "The Razorback" "0"
  80. "Jarate" "0"
  81.  
  82. // spy
  83. "Your Eternal Reward" "0"
  84. "The Dead Ringer" "0"
  85. "The Cloak and Dagger" "0"
  86. "The Ambassador" "0"
  87.  
  88.  
  89. // soldier
  90. "The Black Box" "0"
  91. "The Direct Hit" "0"
  92. "The Equalizer" "0"
  93. "The Buff Banner" "0"
  94. "The Gunboats" "0"
  95.  
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement