View Single Post
  #11 (permalink)  
Old 30th Jun 2006, 6:27 pm
nabilash nabilash is offline
Member
Keen on MPx players
 
Join Date: Jun 2006
Posts: 55
Default

Lol, thats easy. :P
I improved the translations with extracting the firmware (you can write longer sentences without having errors when saving...). You need the prog "s1fwx_v30", then you create two batch files in the folder (new text document>rename to .bat instead of .txt).

the first one we call "extract_fw_file.bat"

Quote:
@echo off

echo Firmware Modifying Tool 0.1
echo ===========================
echo.
:repair
echo 1. Repair firmware
pause
s1fwx r dump.bin
:scriptfordump
echo 2. Create script file for dump.bin
pause
s1fwx s dump.bin > dump.script
:extractdump
echo 3. Extract dump file
pause
s1fwx x dump.bin
:extractfwimage
echo 4. extract fwimage.fw
pause
s1fwx x fwimage.fw
:scriptforfwimage
echo 5. create script file for fwimage.fw
pause
s1fwx s fwimage.fw > fwimage.script
and the second one you call something like "pack_fw_file.bat"

Quote:
@echo off

echo Firmware Modifying Tool 0.1
echo ===========================
echo.
:rename
echo 1. 1. rename oryginal fwimage.fw to some other name
pause
ren fwimage.fw fwimagebackup.fw
:scriptrecreate
echo 2. use script to recreate fwimage with modified files
pause
s1fwx a fwimage.fw:fw < fwimage.script
:createmoddump
echo 3. use dump.script to create modified dump file
pause
s1fwx a mod_dump.bin:afi < dump.script
:logs
echo 4. check logs displayed on screen for errors!!
pause
:scriptforfwimage
echo 5. check if final dump file size seems to be correct!!
pause
The extraction process was described in the wiki of s1mp3.org, I created the batch files to make it easier.

But I think switching games wont work, because nearly all resource files (for games, too) are in the UI30.RES file...

greets.
Reply With Quote