Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. @echo off
  2. cls
  3. :start
  4. echo Console Button Prompts Patcher
  5. echo Mod By: Krisan Thyme
  6. echo --------------------------------------------------------
  7. echo Select which version you'd like to Install.
  8. echo --------------------------------------------------------
  9. echo 1. Playstation Button Prompts
  10. echo 2. Xbox Button Prompts
  11. echo --------------------------------------------------------
  12. set /p choice=Input Selection:
  13. rem if not '%choice%'=='' set choice=%choice:~0;1%
  14. if '%choice%'=='' cls
  15. if '%choice%'=='1' goto :choice1
  16. if '%choice%'=='2' goto :choice2
  17. echo.
  18. goto start
  19. :choice1
  20. echo Setup...
  21. echo ==================================================
  22. copy .\mod\prog\ff13tool.exe ff13tool.exe
  23. copy .\mod\prog\ffxiiicrypt.exe ffxiiicrypt.exe
  24. copy .\mod\prog\misc\system.win32.ps3 .\mod\gui\resident\system.win32.imgb
  25. echo.
  26. echo Preparing EN Files...
  27. echo ==================================================
  28. move .\sys\filelistu.win32.bin filelistu.win32.bin
  29. move .\sys\white_imgu.win32.bin white_imgu.win32.bin
  30. echo.
  31. echo Preparing JP Files...
  32. echo ==================================================
  33. move .\sys\filelistc.win32.bin filelistc.win32.bin
  34. move .\sys\white_imgc.win32.bin white_imgc.win32.bin
  35. echo.
  36.  
  37. echo Patching EN Files...
  38. echo ==================================================
  39. ff13tool -i -ff13 filelistu.win32.bin white_imgu.win32.bin mod/gui/resident/system.win32.imgb
  40.  
  41. echo 2 file(s) patched.
  42. echo.
  43.  
  44. echo Patching JP Files...
  45. echo ==================================================
  46. ff13tool -i -ff13 filelistc.win32.bin white_imgc.win32.bin mod/gui/resident/system.win32.imgb
  47.  
  48. echo 2 file(s) patched.
  49. echo.
  50.  
  51. echo Moving EN Files...
  52. echo ==================================================
  53. move filelistu.win32.bin .\sys\filelistu.win32.bin
  54. move white_imgu.win32.bin .\sys\white_imgu.win32.bin
  55. echo.
  56. echo Moving JP Files...
  57. echo ==================================================
  58. move filelistc.win32.bin .\sys\filelistc.win32.bin
  59. move white_imgc.win32.bin .\sys\white_imgc.win32.bin
  60. echo.
  61. echo Cleanup...
  62. echo ==================================================
  63. del ff13tool.exe
  64. del ffxiiicrypt.exe
  65. del log.txt
  66. del .\mod\gui\resident\system.win32.imgb
  67. echo ...Finished!
  68. echo.
  69. echo Installation Complete!
  70. echo.
  71. goto end
  72. :choice2
  73. echo Setup...
  74. echo ==================================================
  75. copy .\mod\prog\ff13tool.exe ff13tool.exe
  76. copy .\mod\prog\ffxiiicrypt.exe ffxiiicrypt.exe
  77. copy .\mod\prog\misc\system.win32.360 .\mod\gui\resident\system.win32.imgb
  78. echo.
  79. echo Preparing EN Files...
  80. echo ==================================================
  81. move .\sys\filelistu.win32.bin filelistu.win32.bin
  82. move .\sys\white_imgu.win32.bin white_imgu.win32.bin
  83. echo.
  84. echo Preparing JP Files...
  85. echo ==================================================
  86. move .\sys\filelistc.win32.bin filelistc.win32.bin
  87. move .\sys\white_imgc.win32.bin white_imgc.win32.bin
  88.  
  89. echo.
  90.  
  91. echo Patching EN Files...
  92. echo ==================================================
  93. ff13tool -i -ff13 filelistu.win32.bin white_imgu.win32.bin mod/gui/resident/system.win32.imgb
  94.  
  95. echo 2 file(s) patched.
  96. echo.
  97.  
  98. echo Patching JP Files...
  99. echo ==================================================
  100. ff13tool -i -ff13 filelistc.win32.bin white_imgc.win32.bin mod/gui/resident/system.win32.imgb
  101.  
  102. echo 2 file(s) patched.
  103. echo.
  104.  
  105. echo Moving EN Files...
  106. echo ==================================================
  107. move filelistu.win32.bin .\sys\filelistu.win32.bin
  108. move white_imgu.win32.bin .\sys\white_imgu.win32.bin
  109. echo.
  110. echo Moving JP Files...
  111. echo ==================================================
  112. move filelistc.win32.bin .\sys\filelistc.win32.bin
  113. move white_imgc.win32.bin .\sys\white_imgc.win32.bin
  114. echo.
  115. echo Cleanup...
  116. echo ==================================================
  117. del ff13tool.exe
  118. del ffxiiicrypt.exe
  119. del log.txt
  120. del .\mod\gui\resident\system.win32.imgb
  121. echo ...Finished!
  122. echo.
  123. echo Installation Complete!
  124. echo.
  125. goto end
  126. :end
  127. pause
  128. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement