Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [sdl]
- priority =highest
- # max is 1000
- # default is 100
- sensitivity = 150
- fulldouble = true
- fullscreen = true
- [dosbox]
- memsize = 64
- [ipx]
- # ipx -- Enable ipx over UDP/IP emulation.
- ipx=false
- [autoexec]
- # Lines in this section will be run at startup.
- @echo off
- mount C ..
- c:
- imgmount d ".\GAME.DAT" -t iso
- cls
- @ECHO [40;1m
- @echo\
- @ECHO ----------------------------
- @ECHO Shadow Warrior Complete Pack
- @ECHO ----------------------------
- @ECHO on
- @ECHO off
- @ECHO 1) Shadow Warrior
- @ECHO 2) Twin Dragon
- @ECHO 3) Wanton Destruction
- @ECHO 4) Wanton Dragon
- @ECHO on
- @ECHO off
- @ECHO ----------------------------
- @ECHO 5) exit program
- @ECHO ----------------------------
- @ECHO [0m
- @echo\
- @ECHO on
- @ECHO off
- @choice /c12345 /s Which game do you want to run? [1-5]: /n
- if errorlevel 5 goto exit
- if errorlevel 4 goto wdragon
- if errorlevel 3 goto wanton
- if errorlevel 2 goto tdragon
- if errorlevel 1 goto swarrior
- :swarrior
- cls
- @echo off
- @COPY sw.dat sw.exe
- cls
- sw.exe
- cls
- exit
- :tdragon
- cls
- @echo off
- cd .\dragon
- #tdragon.exe
- #sync shadow warrior configuration
- @copy ..\SW.CFG
- cls
- sw.exe
- cls
- exit
- :wdragon
- cls
- @echo off
- cd .\dragon
- #tdragon.exe
- #sync shadow warrior configuration
- @copy ..\SW.CFG
- #start with wanton dragon exec
- @COPY ..\wanton.dat WL.exe
- @COPY ..\wanton.exe wanton.exe
- @COPY ..\WT.GRP WT.GRP
- cls
- WL.exe
- cls
- exit
- :wanton
- cls
- @echo off
- @COPY wanton.dat sw.exe
- cls
- sw.exe
- cls
- exit
- :exit
- exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement