-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstart.bat
56 lines (47 loc) · 876 Bytes
/
start.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@ECHO OFF
cd Processing/Test/windows-amd64/
Start /wait Test.exe
cd ../../../
cls
echo Press any key to start save editor...
pause>nul
cls
cd python/
python3 save-updater.py
cd ../
cls
echo Press any key to start save editor...
pause>nul
cls
cd python/
python3 save-updater.py
cd ../
set /A loops=10
for /l %%x in (1, 1, %loops%) do (
:: One year loop from Mining to Auction
cls
echo Press any key to start mining...
pause >nul
cd Processing/Mining/windows-amd64/
Start /wait Mining.exe
cd ../../../
cls
echo Press any key to start save editor...
pause>nul
cls
cd python/
python3 save-updater.py
cd ../
cls
echo Press any key to start upgrade screen...
pause >nul
cd Processing/Upgrade/windows-amd64/
Start /wait Upgrade.exe
cd ../../../
cls
echo Press any key to start auction...
pause>nul
cd Processing/Auction/windows-amd64/
Start /wait Auction.exe
cd ../../../
)