-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstall.bat
233 lines (223 loc) · 5.62 KB
/
Install.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
:top
@echo off
echo.
color B
echo Please enter your MySQL info
echo.
set /p host= MySQL Server Address (Default = localhost):
if %host%. == . set host=localhost
set /p user= MySQL Username (Default = root):
if %user%. == . set user=root
set /p pass= MySQL Password (Default = ascent ):
if %pass%. == . set pass=
set /p skyfire= skyfire World Database (Default = world):
if %skyfire%. == . set skyfire=skyfire
set port=3306
set mysqlpath=.\mysql\
:begin
CLS
echo.
echo #################################
echo #_______________________________#
echo #___$$$____________________$$$__#
echo #____$$$$$$____________$$$$$$___#
echo #_______$$$$$$??????$$$$$$______#
echo #________$$$$$??????$$$$$_______#
echo #__________??__????__??_________#
echo #__________???______???_________# Rage Mall - Version 1.0b
echo #__________????????????_________#
echo #__________????????????_________#
echo #___________??????????__________#
echo #______$$$$$_????????_$$$$$_____#
echo #_____$$$$$$$?????????$$$$$$$___#
echo #____$$$$$$$$??????????$$$$$$$__#
echo #################################
echo.
echo S - skyfire
echo.
set /p a= Enter a letter:
if %a%==* goto error
if %a%==s goto skyfire
if %a%==S goto skyfire
set a=
goto error
:skyfire
CLS
echo.
echo #################################
echo #_______________________________#
echo #___$$$____________________$$$__#
echo #____$$$$$$____________$$$$$$___#
echo #_______$$$$$$??????$$$$$$______#
echo #________$$$$$??????$$$$$_______#
echo #__________??__????__??_________#
echo #__________???______???_________# Rage Mall - Version 1.0b
echo #__________????????????_________#
echo #__________????????????_________#
echo #___________??????????__________#
echo #______$$$$$_????????_$$$$$_____#
echo #_____$$$$$$$?????????$$$$$$$___#
echo #____$$$$$$$$??????????$$$$$$$__#
echo #################################
echo.
echo I - Import Vendor Data
echo S - Spawn Vendors
echo D - Despawn Vendors
echo E - Remove Everything
echo B - Back
echo.
set /p f= Enter a letter:
if %f%==* goto error
if %f%==i goto skyfire_import
if %f%==I goto skyfire_import
if %f%==s goto skyfire_spawn
if %f%==S goto skyfire_spawn
if %f%==d goto skyfire_despawn
if %f%==D goto skyfire_despawn
if %f%==e goto skyfire_remove
if %f%==E goto skyfire_remove
if %f%==b goto begin
if %f%==B goto begin
set f=
goto error
:skyfire_import
CLS
echo.
echo Importing...
echo.
for %%C in (.\development\vendors_skyfire.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %skyfire% < "%%~fC"
)
echo.
for %%C in (.\development\vendordata_skyfire.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %skyfire% < "%%~fC"
)
echo.
for %%C in (.\development\item_sets_vendors_skyfire.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %skyfire% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity
:skyfire_spawn
CLS
echo.
echo #################################
echo #_______________________________#
echo #___$$$____________________$$$__#
echo #____$$$$$$____________$$$$$$___#
echo #_______$$$$$$??????$$$$$$______#
echo #________$$$$$??????$$$$$_______#
echo #__________??__????__??_________#
echo #__________???______???_________# Rage Mall - Version 1.0b
echo #__________????????????_________#
echo #__________????????????_________#
echo #___________??????????__________#
echo #______$$$$$_????????_$$$$$_____#
echo #_____$$$$$$$?????????$$$$$$$___#
echo #____$$$$$$$$??????????$$$$$$$__#
echo #################################
echo.
echo 1 - GM Island
echo 2 - (Not implemented yet)
echo 3 - (Not implemented yet)
echo B - Back
echo.
set /p g= Enter a letter:
if %g%==* goto error
if %g%==1 goto skyfire_spawn1
if %g%==2 goto skyfire_spawn2
if %g%==3 goto skyfire_spawn3
if %g%==b goto skyfire
if %g%==B goto skyfire
set g=
goto error
:skyfire_spawn1
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_skyfire.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %skyfire% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity_spawn
:skyfire_spawn2
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_skyfire.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %skyfire% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity_spawn
:skyfire_spawn3
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_skyfire.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %skyfire% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity_spawn
:skyfire_despawn
CLS
echo.
echo Despawning Vendors...
echo.
for %%C in (.\development\despawn_skyfire.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %skyfire% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity
:skyfire_remove
CLS
echo.
echo Removing Rage Mall...
echo.
for %%C in (.\development\removeall_skyfire.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %skyfire% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity
:error
CLS
echo.
echo Please enter a correct letter.
echo.
echo Press any key to exit.
pause >NUL
goto begin