-
Notifications
You must be signed in to change notification settings - Fork 2
/
ALTMAP.BAT
42 lines (40 loc) · 1.31 KB
/
ALTMAP.BAT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
echo off
cls
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Alternate Map Batch File º
echo ºÿÿÿ for Civil War Strategy v1.3 º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo ÿ
echo There is an alternate game map and setup stored as ALTMAP files.
echo This file will switch the ALTMAP files and will save the original
echo map/setup as ALTMAP files.
echo
echo To restore the original map, just run this file a second time.
echo ÿÿ
pause Hit Ctrl-C if you do NOT wish to continue
if not exist altmap.ini goto howto
echo ÿ
echo Copying game files to temporary files...
rename cities.grd cities.$$$
rename cws.ini cws.$$$
rename cwslead.dat cwslead.$$$
echo ÿ
echo Copying ALTMAP files to game files...
rename altmap.grd cities.grd
rename altmap.ini cws.ini
rename altlead.dat cwslead.dat
echo ÿ
echo Renaming temporary files as ALTMAP files...
rename cities.$$$ altmap.grd
rename cws.$$$ altmap.ini
rename cwslead.$$$ altlead.dat
echo ÿ
echo DONE ! Hope you enjoy this alternate set-up.
echo Remember, you can switch files back to originals by running
echo this file again...
goto done4
:howto
echo NO ALTMAP files were not found on this drive,
echo so the files cannot be switched. Be sure you are logged
echo onto the drive/directory with the ALTMAP files.
:done4