Advertisement
npocmaka

dosbox_swarrior_single.conf

May 25th, 2013
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.54 KB | None | 0 0
  1. [sdl]
  2. priority =highest
  3. # max is 1000
  4. # default is 100
  5. sensitivity = 150
  6. fulldouble = true
  7. fullscreen = true
  8.  
  9. [dosbox]
  10. memsize = 64
  11.  
  12. [ipx]
  13. # ipx -- Enable ipx over UDP/IP emulation.
  14.  
  15. ipx=false
  16.  
  17. [autoexec]
  18. # Lines in this section will be run at startup.
  19. @echo off
  20. mount C ..
  21. c:
  22. imgmount d ".\GAME.DAT" -t iso
  23. cls
  24. @ECHO 
  25. @echo\
  26. @ECHO  ----------------------------
  27. @ECHO  Shadow Warrior Complete Pack
  28. @ECHO  ----------------------------
  29. @ECHO on
  30. @ECHO off
  31. @ECHO  1) Shadow Warrior      
  32. @ECHO  2) Twin Dragon          
  33. @ECHO  3) Wanton Destruction  
  34. @ECHO  4) Wanton Dragon  
  35. @ECHO on
  36. @ECHO off
  37. @ECHO  ----------------------------
  38. @ECHO  5) exit program            
  39. @ECHO  ----------------------------
  40. @ECHO 
  41. @echo\
  42. @ECHO on
  43. @ECHO off
  44. @choice /c12345 /s Which game do you want to run? [1-5]: /n
  45. if errorlevel 5 goto exit
  46. if errorlevel 4 goto wdragon
  47. if errorlevel 3 goto wanton
  48. if errorlevel 2 goto tdragon
  49. if errorlevel 1 goto swarrior
  50.  
  51. :swarrior
  52. cls
  53. @echo off
  54. @COPY sw.dat sw.exe
  55. cls
  56. sw.exe
  57. cls
  58. exit
  59.  
  60. :tdragon
  61. cls
  62. @echo off
  63. cd .\dragon
  64. #tdragon.exe
  65. #sync shadow warrior configuration
  66. @copy ..\SW.CFG
  67. cls
  68. sw.exe
  69. cls
  70. exit
  71.  
  72. :wdragon
  73. cls
  74. @echo off
  75. cd .\dragon
  76. #tdragon.exe
  77. #sync shadow warrior configuration
  78. @copy ..\SW.CFG
  79. #start with wanton dragon exec  
  80. @COPY ..\wanton.dat WL.exe
  81. @COPY ..\wanton.exe wanton.exe
  82. @COPY ..\WT.GRP WT.GRP
  83. cls
  84. WL.exe
  85. cls
  86. exit
  87.  
  88. :wanton
  89. cls
  90. @echo off
  91. @COPY wanton.dat sw.exe
  92. cls
  93. sw.exe
  94. cls
  95. exit
  96.  
  97. :exit
  98. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement