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 panorama\code.pbin 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\... allow_from_disk materials\models\player\... 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 // // Allow localisation // sound\bot\... allow_from_disk sound\hostage\... allow_from_disk sound\radio\... allow_from_disk maps\*.txt allow_from_disk resource\... allow_from_disk // // Allow customization // sound\gameplay\... allow_from_disk sound\music\... allow_from_disk panorama\fonts\... allow_from_disk panorama\backgrounds\... allow_from_disk materials\panorama\... allow_from_disk // // Allow custom Particles for maps // particles\custom\... allow_from_disk // // Allow VScripts to be different // They can be used by servers to fix map issues // Or tweak gameplay / map / server behaviors // scripts\vscripts\... allow_from_disk // // Allow misc root files // botchatter.db allow_from_disk botprofile.db allow_from_disk bspconvar_whitelist.db allow_from_disk demoheader.tmp allow_from_disk gameinfo.txt allow_from_disk gamemodes.txt allow_from_disk modelsounds.cache allow_from_disk pure_server_whitelist.txt allow_from_disk radial_quickinventory.txt allow_from_disk serverconfig.vdf allow_from_disk }