Resident Evil 5: Gold Edition .msg files
-
- Posts: 1193
- Joined: Sun Aug 17, 2014 7:27 pm
Resident Evil 5: Gold Edition .msg files
How to edit?
-
- Posts: 161
- Joined: Sat Dec 13, 2014 1:01 am
Re: Resident Evil 5: Gold Edition .msg files
Have you tried this: http://z6.invisionfree.com/Resident_Evi ... t15889.htm
The files you provided seem to be event files and have no useful text to edit (it just gives lots of numbers) but if you find the language files you should be able to convert and edit those.
Batch script to rename all .msg files in a folder to .MSG2 (as the tool requires that):
The files you provided seem to be event files and have no useful text to edit (it just gives lots of numbers) but if you find the language files you should be able to convert and edit those.
Batch script to rename all .msg files in a folder to .MSG2 (as the tool requires that):
Code: Select all
@echo off
for %%f in (*.msg) do (
rename "%%f" "%%~nf.MSG2"
)