Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. @echo off
  2. cls
  3. echo.
  4. echo Welcome to the vmaps extractor and assembler
  5. echo.
  6. echo You need 600MB of free space in disk, CTRL+C to stop process
  7. echo Hit Enter to start . . .
  8. pause>nul
  9. cls
  10. echo.
  11. echo.
  12. echo.
  13. IF EXIST buildings\dir (ECHO The buildings folder already exist do you want to delete it?
  14. echo If YES hit Enter to continue if no CLOSE the program now! . . .
  15. pause>nul
  16. DEL /S /Q buildings)
  17. vmapExtractor3.exe
  18. cls
  19. echo.
  20. echo.
  21. echo.
  22. IF NOT %ERRORLEVEL% LEQ 1 (echo The vmap extract tool finalized with errors.
  23. echo Hit Enter to continue . . .
  24. pause>nul)
  25. cls
  26. echo.
  27. echo.
  28. echo.
  29. echo Vmaps extracted check log.txt for errors, now it's time to assemble the vmaps press any key to continue . . .
  30. pause>nul
  31. md vmaps
  32. vmap_assembler.exe buildings vmaps
  33. cls
  34. echo.
  35. echo.
  36. echo.
  37. IF NOT %ERRORLEVEL% LEQ 1 (echo The vmap assembler tool finalized with errors.
  38. echo Hit Enter to continue . . .
  39. pause>nul)
  40. cls
  41. echo.
  42. echo.
  43. echo.
  44. echo Process done! Copy vmaps folder to the Oregon main directory
  45. echo Press any key to exit . . .
  46. pause>nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement