Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »fluxX« (19. Oktober 2012, 14:28)
![]() |
Quellcode |
1 |
sound\... allow_from_disk |
![]() |
Quellcode |
1 2 |
materials\models\parachute\... allow_from_disk models\parachute\... allow_from_disk |
![]() |
Quellcode |
1 |
// 2. directory\... - refers to all files under the directory and all directories under that |
Hab ich doch die sounds gehen einfach nicht und es bleibt ein error..
sobald sv_pure 1 eingegen wird und mapchange dann geht kein sound mehr..
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »fluxX« (19. Oktober 2012, 15:16)
![]() |
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
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\... allow_from_disk // // Fallschirm // materials\models\parachute\... allow_from_disk models\parachute\... 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 // // (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 } |
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »fluxX« (19. Oktober 2012, 16:42)