SRCDS Steam group


problems with pure_server_whitelist.txt
#1
Hi, we are encountering problems with pure_server_whitelist.txt

Quote:whitelist
{
//
// 3 modifiers are allowed on file specifications:
//
// from_steam - only check the Steam cache for the file (ignore anything on disk)
// allow_from_disk - allow the file to come from disk
// check_crc - used with allow_from_disk - server does CRC checks on the client's file to make sure it matches
//
// The default modifier on all files is allow_from_disk. Thus, all files can come from disk and don't need CRC checks unless
// 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.


//
// 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 are only allowed to come from Steam.
//
materials\... from_steam
models\... from_steam
sound\... from_steam


//
// 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
sound\gungame\... allow_from_disk
// sound\admin_plugin\... allow_from_disk
// sound\m2s\... allow_from_disk
// sound\quake\... allow_from_disk

//
// (Uncomment and edit these for mods).
// Allow mod resources to come from disk.
//
// materials\mymod\... allow_from_disk+check_crc
// models\mymod\... allow_from_disk+check_crc
// sound\mymod\... allow_from_disk+check_crc
}
This is our file, server is running gungame4 mod with addons Mani Admin Plugin v1.2BetaS, EventScripts v1.5.0.171, ES_tools v.420.

Our problem is with the section
Quote: //
// Allow custom spray decals.
//
materials\temp\... allow_from_disk
materials\vgui\logos\... allow_from_disk
materials\vgui\logos\ui\... allow_from_disk
sound\gungame\... allow_from_disk
// sound\admin_plugin\... allow_from_disk
// sound\m2s\... allow_from_disk
// sound\quake\... allow_from_disk

If we enable the other sounds(deleting the // from infront of them), the server crashes. When we change the enabled sound\gungame\... to for example sound\quake\... that works, but then we cant enable the gungame sounds anymore.

Anyone having an idea what could make this happen?

edit: server runs in sv_pure 1
Reply
#2
Try
Code:
sound\gungame\... allow_from_disk+check_crc
just an idea as that's the example for mods
Code:
//
// (Uncomment and edit these for mods).
// Allow mod resources to come from disk.
//
// materials\mymod\... allow_from_disk+check_crc
// models\mymod\... allow_from_disk+check_crc
// sound\mymod\... allow_from_disk+check_crc
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)