Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup_win.bat 421B

123456789101112131415
  1. @echo off
  2. if not exist "%UserProfile%\.OpenRaider" (
  3. echo Setting up for %UserName%...
  4. mkdir "%UserProfile%\.OpenRaider"
  5. mkdir %UserProfile%\.OpenRaider\paks
  6. mkdir %UserProfile%\.OpenRaider\music
  7. mkdir %UserProfile%\.OpenRaider\data
  8. mkdir %UserProfile%\.OpenRaider\sshots
  9. copy data\OpenRaider.ini %UserProfile%\.OpenRaider
  10. copy data\*.tga %UserProfile%\.OpenRaider\data
  11. echo Done!
  12. ) else (
  13. echo Already done
  14. )