Skip to content

Instantly share code, notes, and snippets.

@shanapu
Created April 8, 2017 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shanapu/c342c6e2e3ad105a15a203609d65165d to your computer and use it in GitHub Desktop.
Save shanapu/c342c6e2e3ad105a15a203609d65165d to your computer and use it in GitHub Desktop.
pure_server_whitelist.txt
whitelist
{
//
// 2 modifiers are allowed on file specifications:
//
// allow_from_disk - do not check the file signature
// check_crc - server does file signature checks on the client's file to make sure it matches
//
// The default modifier on all files is allow_from_disk.
//
// Three types of file specifications:
//
// 1. directory\*.* - refers to all files under the directory
// 2. directory\... - refers to all files under the directory and all directories under that (recursively)
// 3. directory\filename - refers to a single file
//
// By default, when in pure server mode, most content file types should be checked
//
materials\... check_crc
models\... check_crc
sound\... check_crc
scripts\... check_crc
particles\... check_crc
// ignore the debug materials
materials\debug\*.* allow_from_disk
//
// Allow custom player models. Don't do CRC checks on them because the clients may all
// have different custom models and the server won't have them all.
//
models\player\custom_player\... allow_from_disk
models\chicken\... allow_from_disk
materials\models\player\... allow_from_disk
materials\models\props_farm\... allow_from_disk
materials\decals\MyJailbreak\... allow_from_disk
materials\overlays\MyJailbreak\... allow_from_disk
sound\music\MyJailbreak\... allow_from_disk
//
// Allow custom spray decals.
//
materials\temp\... allow_from_disk
materials\vgui\logos\... allow_from_disk
materials\vgui\logos\ui\... allow_from_disk
//
// Allow replay browser thumbnails.
//
materials\vgui\replay\thumbnails\... allow_from_disk
//
// Allow live schema updates.
//
scripts\items\items_game_live.txt allow_from_disk
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment