View Single Post
Old 24-05-2006, 01:46 PM   #5
Office_Monk
Game freak
 
Office_Monk's Avatar

 
Join Date: Aug 2005
Location: Peer, Belgium
Posts: 149
Default

Quote:
Originally posted by the_fifth_horseman@May 24 2006, 03:27 PM
Did the game create any config file after running the setup? What is its filename?
Try displaying the command line switches one can use when running the game.
I had a similar (not exactly the same, but pretty close) thing with Pinball Illusions (the very same version now on Abandonia), and using a command line switch to set a different filename for the config has fixed it in a pinch.
It should create "eation.cfg" in the folder c:\bodyslam

However it doesn't...

The installer is a batchfile:
bodyslam.bat here's what's in it:
echo off
CD BODYMENU
INTRO.EXE
BODY1.BAT


here's body1.bat (the cd has 2 other demo's):
@echo off
:repeat
:start
@echo off
cd\bodymenu
cls
go
if errorlevel 4 goto manual
if errorlevel 3 goto pyscho
if errorlevel 2 goto ice
if errorlevel 1 goto body
goto exit

:manual
cd\
view
goto end

:body
@echo off

if not exist c:\bodyslam\eation.cfg goto error
cd \bslam\final
msub
init
if exist c:\bodyslam\names.txt goto skip
copy names.txt c:\bodyslam
:skip
tag
cd\bslam
pause
goto end

:error

@echo No sound configuration file found - Press any key to run sound setup.
pause
@echo off
cd\bslam\final
msub
init
if exist c:\bodyslam\names.txt goto skip2
copy names.txt c:\bodyslam
:skip2
soundset
if not exist c:\bodyslam\eation.cfg goto error
tag
cd..
pause
goto end


yscho
if not exist c:\windows\system.ini goto nowindows
if not exist c:\windows\psychotr.grp goto install

echo Psychotron Demo Loading...
runpsyc.exe
pause
goto end

:nowindows
echo.
echo Microsoft Windows required on Drive C
echo to run Psychotron Demo from this Menu
echo To Install from another Directory
echo Type WIN D:\PSYINST.EXE
echo where D:\ = is your CD ROM Drive
echo.
pause
goto end

:install
echo.
echo Psychotron Demo Installation
echo.
echo.
echo.
echo For best results please install a 256 colour screen driver for windows
echo.
echo Please refer to windows manual for detailed instructions.
echo.
echo.
pause
win \psyinst
pause
goto end

:ice
echo Ice Hockey Demo
echo ** THIS DEMO REQUIRES 8MEG OF RAM **
pause
cd\ice
call ice
pause

:end
goto repeat

:exit
CD\
echo.
echo.

and here's setsound.bat:
@echo off
cd final
msub
init
if not exist c:\bodyslam\names.txt copy names.txt c:\bodyslam
soundset
if not exist c:\bodyslam\eation.cfg goto error
tag
cd..
goto end

:error
@echo No sound configuration file found - please run the sound setup again.
cd..

:end
Office_Monk is offline                         Send a private message to Office_Monk
Reply With Quote