Guest User

Build_PullData.bat

a guest
Mar 10th, 2016
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.89 KB | None | 0 0
  1. @ECHO off
  2.  
  3. REM Directories
  4. SET skyrimDirectory=D:\Games\Steam\SteamApps\common\Skyrim\Data\
  5. SET wryeDirectory=M:\DataShare\TES5\Bash Installers\Helmet Overlays\
  6.  
  7. REM Folders
  8. SET modFolder=%wryeDirectory%\.Data\
  9. SET helmetFolder=%wryeDirectory%\Helmet\
  10. SET magicFolder=%wryeDirectory%\Magic\
  11. SET sampleFolder=%wryeDirectory%\Sample\
  12.  
  13. ECHO Update Helmet Overlays
  14. ECHO Skyrim  - %skyrimDirectory%
  15. ECHO Mod     - %modFolder%
  16. ECHO Helmet  - %helmetFolder%
  17. ECHO Magic   - %magicFolder%
  18. ECHO Sample  - %sampleFolder%
  19.  
  20. ECHO.
  21. ECHO.
  22. ECHO Update Overlays
  23. SET plugin1=ScribeOverlays.esp
  24. SET pex01=Scripts\ScribeOverlay.pex
  25. SET pex02=Scripts\ScribeOverlay_Quest.pex
  26. SET pex03=Scripts\ScribeOverlay_Reload.pex
  27. SET pex04=Scripts\ScribeOverlay_ViewBase.pex
  28. SET pex05=Scripts\ScribeOverlay_ViewManager.pex
  29. ECHO f | xcopy /f /y "%skyrimDirectory%%plugin1%" "%modFolder%%plugin1%"
  30. ECHO f | xcopy /f /y "%skyrimDirectory%%pex01%" "%modFolder%%pex01%"
  31. ECHO f | xcopy /f /y "%skyrimDirectory%%pex02%" "%modFolder%%pex02%"
  32. ECHO f | xcopy /f /y "%skyrimDirectory%%pex03%" "%modFolder%%pex03%"
  33. ECHO f | xcopy /f /y "%skyrimDirectory%%pex04%" "%modFolder%%pex04%"
  34. ECHO f | xcopy /f /y "%skyrimDirectory%%pex05%" "%modFolder%%pex05%"
  35.  
  36. ECHO.
  37. ECHO.
  38. ECHO Update Helmet
  39. SET helmetPlugin=HelmetView.esp
  40. SET helmet01=Scripts\ScribeHelmet.pex
  41. SET helmet02=Scripts\ScribeHelmet_Alias.pex
  42. SET helmet03=Scripts\ScribeHelmet_AliasCamera.pex
  43. SET helmet04=Scripts\ScribeHelmet_AliasGear.pex
  44. SET helmet05=Scripts\ScribeHelmet_AliasLight.pex
  45. SET helmet06=Scripts\ScribeHelmet_AliasMenu.pex
  46. SET helmet07=Scripts\ScribeHelmet_AliasMotion.pex
  47. SET helmet08=Scripts\ScribeHelmet_MCM.pex
  48. ECHO f | xcopy /f /y "%skyrimDirectory%%helmetPlugin%" "%helmetFolder%%helmetPlugin%"
  49. ECHO f | xcopy /f /y "%skyrimDirectory%%helmet01%" "%helmetFolder%%helmet01%"
  50. ECHO f | xcopy /f /y "%skyrimDirectory%%helmet02%" "%helmetFolder%%helmet02%"
  51. ECHO f | xcopy /f /y "%skyrimDirectory%%helmet03%" "%helmetFolder%%helmet03%"
  52. ECHO f | xcopy /f /y "%skyrimDirectory%%helmet04%" "%helmetFolder%%helmet04%"
  53. ECHO f | xcopy /f /y "%skyrimDirectory%%helmet05%" "%helmetFolder%%helmet05%"
  54. ECHO f | xcopy /f /y "%skyrimDirectory%%helmet06%" "%helmetFolder%%helmet06%"
  55. ECHO f | xcopy /f /y "%skyrimDirectory%%helmet07%" "%helmetFolder%%helmet07%"
  56. ECHO f | xcopy /f /y "%skyrimDirectory%%helmet08%" "%helmetFolder%%helmet08%"
  57.  
  58. ECHO.
  59. ECHO.
  60. ECHO Update Magic
  61. SET magicPlugin=MagicView.esp
  62. SET magic01=Scripts\ScribeMagic_View.pex
  63. ECHO f | xcopy /f /y "%skyrimDirectory%%magicPlugin%" "%magicFolder%%magicPlugin%"
  64. ECHO f | xcopy /f /y "%skyrimDirectory%%magic01%" "%magicFolder%%magic01%"
  65.  
  66. ECHO.
  67. ECHO.
  68. ECHO Update Sample
  69. SET samplePlugin=SampleView.esp
  70. SET sample01=Scripts\ScribeSample_View.pex
  71. ECHO f | xcopy /f /y "%skyrimDirectory%%samplePlugin%" "%sampleFolder%%samplePlugin%"
  72. ECHO f | xcopy /f /y "%skyrimDirectory%%sample01%" "%sampleFolder%%sample01%"
  73.  
  74. PAUSE
Add Comment
Please, Sign In to add comment