View Single Post
Old 28-06-2007, 10:09 PM   #1
Malolor
Newbie

 
Join Date: Feb 2005
Location: ,
Posts: 5
Default

I was trying to run DINO3D (3D Dinosaur Adventure, Knowledge Adventure, 1994) in DOSBOX. The installation works fine, but when I try to run it an error displays:

Code:
Recursive launch of launch module. This should not happen.
And then it closes.

The batch file DINO.BAT contains:

Code:
@echo off
rem usage: DINO3D [-v] [-clean]
rem If -v is given, user can hit Ctrl-PrintScreen to dump the screen to a file.
rem If -clean is given, no TSRs will be loaded before running ka.
C:
cd C:\DINO3D
if "%1"=="-CLEAN" goto clean
if "%1"=="-clean" goto clean
rem power.exe not detected
if "%1"=="-V" goto vgacapt
if "%1"=="-v" goto vgacapt
moustest
if errorlevel 1 goto nomouse
rem no special tsrs needed
ka -520k kav.pgm -lC:\DINO3D -rD:\DINO3D -fC:\DINO3D
rem no special tsr cleanup needed
goto end
:nomouse
mouse
rem no special tsrs needed
ka -520k kav.pgm -lC:\DINO3D -rD:\DINO3D -fC:\DINO3D
rem no special tsr cleanup needed
mouse /u >nul
goto end
:vgacapt
moustest
if errorlevel 1 goto vnomouse
rem no special tsrs needed
vgacapt ka -520k kav.pgm -lC:\DINO3D -rD:\DINO3D -fC:\DINO3D
rem no special tsr cleanup needed
goto end
:vnomouse
mouse
rem no special tsrs needed
vgacapt ka -520k kav.pgm -lC:\DINO3D -rD:\DINO3D -fC:\DINO3D
rem no special tsr cleanup needed
mouse /u >nul
goto end
:clean
ka -520k kav.pgm -lC:\DINO3D -rD:\DINO3D -fC:\DINO3D
:end
echo.
echo.
echo**ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo**º****************Thank you for using 3D-Dinosaur Adventure.************** º
echo**º************************************************************************ º
echo**º****** Try these other great new products from Knowledge Adventure!******º
echo**ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo. 
echo************************ ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo************************ º** 3-D BODY ADVENTURE******º
echo************************ º** AMERICA ADVENTURE****** º
echo************************ º** BUG ADVENTURE********** º
echo************************ º** KID'S ZOO************** º
echo************************ º** IMAX DISCOVERERS********º
echo************************ º** IMAX SPEED**************º
echo************************ º** SCIENCE ADVENTURE II****º
echo************************ º** SPACE ADVENTURE******** º
echo************************ º** UNDERSEA ADVENTURE******º
echo************************ º** ZURK'S LEARNING SAFARI**º
echo************************ ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.
echo.
echo****************** For more information call (818) 542-4200.
echo.
pause
If I run "ka -520k kav.pgm -lC:\DINO3D -rD:\DINO3D -fC:\DINO3D" or just "ka" (KA.COM file) the same error appears.

I been trying a lot but I just can't find the problem. Please help me!

Thanks,
Malolor
Malolor is offline                         Send a private message to Malolor
Reply With Quote