So, basically this isn't for GMod, it's for L4d2 but I seriously have no idea where else I can get help, facepunch community has helped me before. But what I want to do is take a blank .wav file and rewrite it over all existing .wav files in a folder (keeping the same file names). I have tried different windows batch files before but nothing has worked the way I wanted. There are so many files that I want replaced it will just take forever to replace them by hand.
My end goal is to mute the survivor voicelines if that is necessary for you to help me. And yes, I know I can remove their "talker" scripts or whatever but that doesn't seem to work online, it seems that quotes are handled by the server which makes sense.
I believe L4D2 servers have sv_pure enabled by default which means your custom overrides won't work. Otherwise, this batch should work (tested on Windows 10):
for %%f in (*.wav) do copy NUL %%f
Sorry, you need to Log In to post a reply to this thread.