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.
123456789101112131415 |
- @echo off
-
- if not exist "%UserProfile%\.OpenRaider" (
- echo Setting up for %UserName%...
- mkdir "%UserProfile%\.OpenRaider"
- mkdir %UserProfile%\.OpenRaider\paks
- mkdir %UserProfile%\.OpenRaider\music
- mkdir %UserProfile%\.OpenRaider\data
- mkdir %UserProfile%\.OpenRaider\sshots
- copy data\OpenRaider.ini %UserProfile%\.OpenRaider
- copy data\*.tga %UserProfile%\.OpenRaider\data
- echo Done!
- ) else (
- echo Already done
- )
|