forked from gegerlan/aog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.bat
89 lines (65 loc) · 2.06 KB
/
Game.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
@echo off
REM #========================================================
REM # Based on script
REM # Developed by Raku ([email protected])
REM #========================================================
REM # Use this batch file as you please.
REM #========================================================
REM #========================================================
REM # Enter into game directory
REM #========================================================
CD Game
REM #========================================================
REM # Setup the Paths for the Importer/Exporter
REM #========================================================
REM # The path to the utility scripts relative to the project dir
SET SCRIPTS_DIR="../Utility"
REM # The path to the project dir relative to the utility scripts
SET PROJECT_DIR=".."
REM # The path to the data dir relative to the Game folder
SET DATA_DIR="Data"
REM #===============================
REM # Change to Scripts Directory
REM #===============================
SET PREV_DIR=%CD%
CD %SCRIPTS_DIR%
REM #========================
REM # RGSS script Importer
REM #========================
rxdatav.exe script_importer %PROJECT_DIR%
REM #======================
REM # RMXP Data Importer
REM #======================
rxdatav.exe data_importer %PROJECT_DIR%
REM #======================
REM # Copy required files
REM # to the Game folder
REM #======================
CD %PREV_DIR%
CD ..
COPY Src\Required\* Game\. /Y
REM #======================
REM # Return to Game directory
REM #======================
CD %PREV_DIR%
REM #=======================
REM # See if import was successful
REM #=======================
CD %DATA_DIR%
FOR /f %%n in ('DIR /b ^| FIND ".rxdata" /c') DO SET RXDATA_FILES=%%n
CD %PREV_DIR%
IF %RXDATA_FILES% GTR 1 (
REM #=======================
REM # Start Game
REM #=======================
START Game.exe
) ELSE (
ECHO.
ECHO Unable to find imported files required.
ECHO.
ECHO Make sure that rxdatav.exe has not been blocked
ECHO by antivirus or a similar application.
ECHO.
PAUSE
)
CD ..