aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authortkrokli <tkrokli@users.noreply.github.com>2017-07-14 06:50:41 +0200
committertkrokli <tkrokli@users.noreply.github.com>2017-07-14 06:50:41 +0200
commit9c1a426202baf40412bb3ce8f97a9ac0820c9dfd (patch)
tree248ae27e8bf33e20afd2709abe6f81483469ef31 /contrib
parent8b2bd9a5f204fe02c1110d5e851647ee96302880 (diff)
Contrib/Windows: extractor.bat cleanup
- Missing GOTO label :EOF at the end of the file - Messages to user are in full English sentences.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/extractor.bat25
1 files changed, 15 insertions, 10 deletions
diff --git a/contrib/extractor.bat b/contrib/extractor.bat
index 093ed2f839b..31aa8114cdc 100644
--- a/contrib/extractor.bat
+++ b/contrib/extractor.bat
@@ -8,9 +8,13 @@ ECHO ...............................................
ECHO PRESS 1, 2, 3 OR 4 to select your task, or 5 to EXIT.
ECHO ...............................................
ECHO.
-ECHO If you see one row with the error
-ECHO "Couldn't open RootWmo!!!"
-ECHO Ignore it, it's not real error.
+ECHO The vmaps extractor output text below is intended and not an error:
+ECHO ..........................................
+ECHO Extracting World\Wmo\Band\Final_Stage.wmo
+ECHO No such file.
+ECHO Couldn't open RootWmo!!!
+ECHO Done!
+ECHO ..........................................
ECHO.
ECHO 1 - Extract dbc/db2 and maps
ECHO 2 - Extract vmaps (needs maps to be extracted before you run this)
@@ -26,16 +30,16 @@ IF %M%==4 GOTO ALL
IF %M%==5 GOTO EOF
:MAPS
start mapextractor.exe
-ECHO wait before mapextractor.exe closes before continue
+ECHO Wait until mapextractor.exe closes before continuing.
pause
GOTO MENU
:VMAPS
md vmaps
start vmap4extractor.exe
-ECHO wait before vmap4extractor.exe closes before continue
+ECHO Wait until vmap4extractor.exe closes before continuing.
pause
start vmap4assembler.exe Buildings vmaps
-ECHO wait before vmap4assembler.exe closes before continue
+ECHO Wait until vmap4assembler.exe closes before continuing.
pause
rmdir Buildings /s /q
GOTO MENU
@@ -46,18 +50,19 @@ pause
GOTO MENU
:ALL
start mapextractor.exe
-ECHO wait before mapextractor.exe closes before continue
+ECHO Wait until mapextractor.exe closes before continuing.
pause
md vmaps
start vmap4extractor.exe
-ECHO wait before vmap4extractor.exe closes before continue
+ECHO Wait until vmap4extractor.exe closes before continuing.
pause
start vmap4assembler.exe Buildings vmaps
-ECHO wait before vmap4assembler.exe closes before continue
+ECHO Wait until vmap4assembler.exe closes before continuing.
pause
rmdir Buildings /s /q
md mmaps
start mmaps_generator.exe --threads %NUMBER_OF_PROCESSORS%
-ECHO wait before mmaps_generator.exe closes before continue (may take hours)
+ECHO Wait until mmaps_generator.exe closes before continuing (may take hours).
pause
GOTO MENU
+:EOF