![]() |
|
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Newbie
Join Date: Oct 2006
Posts: 2
Rep Power: 0
![]() |
Need Batch Help
I am writing simple batch files for installing my mods for Star Wars Battlefront 2, but I am having a problem with it. Here is my script so far:
@echo off cls echo Hello, welcome to Darkicon's Star Wars Battlefront II mod installer! pause echo Would you like to install Civil War Elimination on Geonosis? echo Y Yes echo N No CHOICE /C:yn Choose an option. IF errorlevel 2 GOTO No IF errorlevel 1 GOTO Yes :Yes echo Deleting original "mission.lvl". del C:\Program Files\LucasArts\Star Wars Battlefront II\GameData\data\_lvl_pc\mission.lvl echo Moving Civil War Elimination on Geonosis "mission.lvl". copy C:\XL Civil War Geo\mission.lvl C:\Program Files\LucasArts\Star Wars Battlefront II\GameData\data\_lvl_pc\ pause echo All done! Have fun! :No GOTO End :End echo Goodbye! pause exit When I execute it, it just closes. Thank you. |
|
|
|
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Batch Question | NightShade01 | Other Programming Languages | 3 | Jun 20th, 2006 6:39 PM |
| Embedding a batch file into a C++ app | vynkz | C++ | 22 | May 18th, 2005 9:59 PM |
| Batch Files | Skinner | Other Programming Languages | 4 | Apr 28th, 2005 9:03 AM |
| MSDOS Batch Desktop arrange | dingbat | Other Web Development Languages | 3 | Apr 13th, 2005 6:33 AM |
| Update registry key value via batch file | dpasswat | Other Scripting Languages | 1 | Mar 17th, 2005 11:45 AM |