Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.08 KB | None | 0 0
  1. @echo off
  2. echo Persona 4 Arena Ultimax "English Patch" version 0.1 Enabler/Disabler
  3. echo.
  4. echo This uses the existing English files to make the game readable.
  5. echo Text only; no English audio here and CS audio isn't directly compatible.
  6. echo.
  7. echo Continuing will rename your files so that the English ones will load.
  8. echo This is a reversible process; just run this again and you'll be back to normal!
  9. echo.
  10. echo Please note that minor visual glitches WILL occur, and the game MAY crash.
  11. echo If you get any crashes, make sure to disable this before assuming the game is broken!
  12. echo.
  13. echo Please ensure this file is in the P4AU root directory, alongside (not within) "data".
  14. echo You can view what this does in any text editor: close the window now to stop, or proceed if you're ready.
  15.  
  16. pause
  17.  
  18. ren data\ETC\text\jpn tmp
  19. ren data\ETC\text\eng jpn
  20. ren data\ETC\text\tmp eng
  21.  
  22. ren data\Event\jpn tmp
  23. ren data\Event\eng jpn
  24. ren data\Event\tmp eng
  25.  
  26. ren data\ETCIMG\profile_jpn_* profile_tmp_*
  27. ren data\ETCIMG\profile_eng_* profile_jpn_*
  28. ren data\ETCIMG\profile_tmp_* profile_eng_*
  29.  
  30. ren data\ETCIMG\ga_status_jpn_* ga_status_tmp_*
  31. ren data\ETCIMG\ga_status_eng_* ga_status_jpn_*
  32. ren data\ETCIMG\ga_status_tmp_* ga_status_eng_*
  33.  
  34. ren data\gr\*_jpn.pac *_tmp.pac
  35. ren data\gr\*_eng.pac *_jpn.pac
  36. ren data\gr\*_tmp.pac *_eng.pac
  37.  
  38. ren data\localize\jpn_* tmp_*
  39. ren data\localize\eng_* jpn_*
  40. ren data\localize\tmp_* eng_*
  41.  
  42. ren data\particle\*_jpn.pac *_tmp.pac
  43. ren data\particle\*_eng.pac *_jpn.pac
  44. ren data\particle\*_tmp.pac *_eng.pac
  45.  
  46. ren data\ETC\*_jpn.pac *_tmp.pac
  47. ren data\ETC\*_eng.pac *_jpn.pac
  48. ren data\ETC\*_tmp.pac *_eng.pac
  49.  
  50. ren data\ETC\ModeSelectM_jpn.pac ModeSelectM_tmp.pac
  51. ren data\ETC\ModeSelectM_eng.pac ModeSelectM_jpn.pac
  52. ren data\ETC\ModeSelectM_tmp.pac ModeSelectM_eng.pac
  53.  
  54. echo The files should be renamed; assuming it went well, try launching the game!
  55. echo.
  56. echo If you applied the changes and something went wrong, re-run this to undo them.
  57. echo Should you encounter a more complex issue... well, you know where to go.
  58. echo.
  59. echo Good luck, and have fun!
  60. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement