Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2012
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. whitelist
  2. {
  3. //
  4. // 3 modifiers are allowed on file specifications:
  5. //
  6. // from_steam - only check the Steam cache for the file (ignore anything on disk)
  7. // allow_from_disk - allow the file to come from disk
  8. // check_crc - used with allow_from_disk - server does CRC checks on the client's file to make sure it matches
  9. //
  10. // The default modifier on all files is allow_from_disk. Thus, all files can come from disk and don't need CRC checks unless
  11. // allow_from_disk can be set at the same time as check_crc. Use the + character in between them to signify this: allow_from_disk+check_crc.
  12.  
  13.  
  14. //
  15. // Three types of file specifications:
  16. //
  17. // 1. directory\*.* - refers to all files under the directory
  18. // 2. directory\... - refers to all files under the directory and all directories under that (recursively)
  19. // 3. directory\filename - refers to a single file
  20.  
  21.  
  22. //
  23. // By default, when in pure server mode, most content file types are only allowed to come from Steam.
  24. //
  25. materials\... allow_from_disk
  26. models\... allow_from_disk
  27. sound\... allow_from_disk
  28. materials\... allow_from_disk
  29.  
  30.  
  31. //
  32. // Allow custom player models. Don't do CRC checks on them because the clients may all
  33. // have different custom models and the server won't have them all.
  34. //
  35. models\player\... allow_from_disk
  36. materials\models\player\... allow_from_disk
  37. materials\models\player\preda\ct_gign.vmt allow_from_disk+check_crc
  38. materials\models\player\preda\devices.vmt allow_from_disk+check_crc
  39. materials\models\player\preda\limbs.vmt allow_from_disk+check_crc
  40. materials\models\player\preda\torso.vmt allow_from_disk+check_crc
  41. materials\models\player\preda\devices.vtf allow_from_disk+check_crc
  42. materials\models\player\preda\limbs.vtf allow_from_disk+check_crc
  43. materials\models\player\preda\torso.vtf allow_from_disk+check_crc
  44. models\player\predat.mdl allow_from_disk+check_crc
  45. models\player\predat.vvd allow_from_disk+check_crc
  46.  
  47. //
  48. // Allow custom spray decals.
  49. //
  50. materials\temp\... allow_from_disk
  51. materials\vgui\logos\... allow_from_disk
  52. materials\vgui\logos\ui\... allow_from_disk
  53.  
  54. //
  55. // Allow replay browser thumbnails.
  56. //
  57. materials\vgui\replay\thumbnails\... allow_from_disk
  58.  
  59. //
  60. // (Uncomment and edit these for mods).
  61. // Allow mod resources to come from disk.
  62. //
  63. // materials\mymod\... allow_from_disk+check_crc
  64. // models\mymod\... allow_from_disk+check_crc
  65. // sound\mymod\... allow_from_disk+check_crc
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement