forked from gegerlan/aog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditor.bat
87 lines (58 loc) · 1.85 KB
/
Editor.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
@echo off
REM #========================================================
REM # Based on script
REM # Developed by Raku (rakudayo@gmail.com)
REM #========================================================
REM # Use this batch file as you please.
REM #========================================================
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 #===============================
REM # Change to Game Directory
REM #===============================
CD Game
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 # Start RPG Maker XP
REM #=======================
CD %PREV_DIR%
START /WAIT Game.rxproj
CD %SCRIPTS_DIR%
REM #======================
REM # RMXP Data Exporter
REM #======================
CD
rxdatav.exe data_exporter %PROJECT_DIR%
REM #========================
REM # RGSS Script Exporter
REM #========================
rxdatav.exe script_exporter %PROJECT_DIR%
REM #================================
REM # Return to Original Directory
REM #================================
CD %PREV_DIR%
CD ..