Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Packaging a Program
#2
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:
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.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)