home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 May / PCW596.iso / demgier / bjdemo / data / init1.str < prev    next >
Text File  |  1995-07-18  |  552b  |  33 lines

  1. @echo off
  2. if "%1" == "new" goto :newcharacter
  3. if "%1" == "New" goto :newcharacter
  4. if "%1" == "NEW" goto :newcharacter
  5.  
  6. CALL DATA\VMR.BAT
  7. if "%1" == "AUTODETECT" goto :autorun
  8. GAME.EXE 1 0
  9. goto :end 
  10.  
  11. :autorun
  12. echo  
  13. echo Blind Justice will Autodetect your sound hardware.
  14. echo  
  15. GAME.EXE 1 1 
  16. goto :end
  17.  
  18. :newcharacter
  19. data\start 12345 PIT 4
  20. echo  
  21. echo A new character has been created. Type JUSTICE to begin.
  22. goto :final
  23.  
  24. :end
  25. CALL DATA\VMR.BAT OFF
  26. set dos4g=
  27. echo ...and you return to the real world.
  28.  
  29. :final
  30. echo  
  31.  
  32.  
  33.