Guest User

Untitled

a guest
Apr 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 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\... from_steam
  26. models\... from_steam
  27. sound\... allow_from_disk
  28.  
  29.  
  30. //
  31. // Allow custom player models. Don't do CRC checks on them because the clients may all
  32. // have different custom models and the server won't have them all.
  33. //
  34. models\player\... allow_from_disk
  35. materials\models\player\... allow_from_disk
  36.  
  37.  
  38. //
  39. // Allow custom spray decals.
  40. //
  41. materials\temp\... allow_from_disk
  42. materials\vgui\logos\... allow_from_disk
  43. materials\vgui\logos\ui\... allow_from_disk
  44.  
  45. //
  46. // Allow replay browser thumbnails.
  47. //
  48. materials\vgui\replay\thumbnails\... allow_from_disk
  49.  
  50. //
  51. // (Uncomment and edit these for mods).
  52. // Allow mod resources to come from disk.
  53. //
  54. // materials\mymod\... allow_from_disk+check_crc
  55. // models\mymod\... allow_from_disk+check_crc
  56. // sound\mymod\... allow_from_disk+check_crc
  57. sound\gl_endmusic\*.* allow_from_disk
  58.  
  59. }
Add Comment
Please, Sign In to add comment