.WAV FILES DON'T PLAY FOR MECHWARRIOR 4
And here it is 
Download from http://gamefileformats.the-underdogs.in ... -mw4-1.zip
Give the name of the compressed file (i.e. the ones that don't play) and as second parameter the name of the new file.
The source code is included, in case Mr.Mouse wants to add support to Mex.

Download from http://gamefileformats.the-underdogs.in ... -mw4-1.zip
Give the name of the compressed file (i.e. the ones that don't play) and as second parameter the name of the new file.
The source code is included, in case Mr.Mouse wants to add support to Mex.
-
- Site Admin
- Posts: 4057
- Joined: Wed Jan 15, 2003 6:45 pm
- Location: Dungeons of Doom
- Has thanked: 432 times
- Been thanked: 639 times
- Contact:
Actually, John_doe, Rahly wrote a plugin manager that enables anyone to create a plugin for MexCom, with Non-activeX dll's. MexCom has two types of plugins. ActiveX (PGN) and those that work via Rahly's Plugin Manager (RPM).
Theoretically, instead of writing a command line tool,you could also write a plugin for MexCom by compiling a DLL.
You'd only have to get a skeleton dll with standard functions from Rahly (or peek in those that are already provided by MexCom) and fill in the blanks. It couldn't possibly be a lot more work.
Theoretically, instead of writing a command line tool,you could also write a plugin for MexCom by compiling a DLL.


ok i figured how to work it now by typing a line such as this
C:\22\delzw.exe C:\22\commoffline_bet.wav C:\22\yes.wav
but is there anyway you can create a gui for this? such as:
source:_____ [browse button]
output:_____ [browse button]
[convert button]
there are A LOT [hundreds] of files I need to convert and this would save A LOT of time typing in each line of code. please?
C:\22\delzw.exe C:\22\commoffline_bet.wav C:\22\yes.wav
but is there anyway you can create a gui for this? such as:
source:_____ [browse button]
output:_____ [browse button]
[convert button]
there are A LOT [hundreds] of files I need to convert and this would save A LOT of time typing in each line of code. please?
- Dinoguy1000
- Site Admin
- Posts: 786
- Joined: Mon Sep 13, 2004 1:55 am
- Has thanked: 154 times
- Been thanked: 161 times
-
- Site Admin
- Posts: 4057
- Joined: Wed Jan 15, 2003 6:45 pm
- Location: Dungeons of Doom
- Has thanked: 432 times
- Been thanked: 639 times
- Contact:
Open a new text file and rename it to run.bat.
Then edit it so it contains this line:
This will scan the current directory for all files and attempt to decompress them to <filename>.dec
Make sure delzw.exe is in the same dir as the batch file.
So go to the dos console and run the batch file simply by typing 'run.bat'.
Then edit it so it contains this line:
Code: Select all
FOR %%F IN (*.*) DO (
delzw.exe %%F %%F.dec
)
Make sure delzw.exe is in the same dir as the batch file.
So go to the dos console and run the batch file simply by typing 'run.bat'.