24-09-2009, 07:39 PM
It depends on the computer, some people have the files needed and registered and others don't. It also depends on what files your specific game requires to run.
For a base MS4 you would most likely need to include these files in the client folder:
dx7vb.dll
MSWINSCK.OCX
RICHTX32.OCX
You can create a batch file in notepad which will register the files with this code:
Hope this helps.
For a base MS4 you would most likely need to include these files in the client folder:
dx7vb.dll
MSWINSCK.OCX
RICHTX32.OCX
You can create a batch file in notepad which will register the files with this code:
Code:
@echo off
echo Registering game library files...
regsvr32 dx7vb.dll /s
regsvr32 MSWINSCK.OCX /s
regsvr32 RICHTX32.OCX /s
echo Done
Hope this helps.