Well.. There's a few work-arounds you can do. And they are.:
You can delete them manually. (I'm still not sure how to stop them from being created)
You can use a batch file to start your server. For example:
Code:
@ECHO OFF
CLS
FOR %%F IN (*.MDMP) DO DEL %%F
Placing this into a text file and name it anything (File.
bat) but the extension needs to be .bat. Running it in the same folder as the .mdmp files, the file with delete the .mdmp's. You can also add to start your server in the file to, like so:
Code:
@ECHO OFF
CLS
FOR %%F IN (*.MDMP) DO DEL %%F
hlds -console +game "cstrike" +map de_dust2 +port 27015 +maxplayers 16
__________________