Advertisement
Insanitus

Testing

Feb 26th, 2018
2,936
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. if exist simc_cache.dat del /s simc_cache.dat
  3.  
  4. if exist simc.exe goto 32
  5. goto exit
  6.  
  7. :32
  8. cd "profiles"
  9. :: PreRaids doesn't match the typical pattern
  10. cd "PreRaids"
  11. echo Running PR_Generate.simc in %cd%
  12. "%~dp0simc.exe" PR_Generate.simc
  13. cd ..\
  14. :: TierXX profiles generation
  15. for %%g in (19, 20, 21) do (
  16.  cd Tier%%g
  17.  echo Running T%%g_Generate.simc in %cd%
  18.  "%~dp0simc.exe" T%%g_Generate.simc
  19.  cd ..\
  20. )
  21. goto pause
  22.  
  23. :exit
  24. echo "This file requires the CLI (simc.exe) to be located in the same folder"
  25.  
  26. :pause
  27. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement