Author Topic: FF7 PC French PSF Musics  (Read 2599 times)

Ornthalas

  • Guest
FF7 PC French PSF Musics
« on: 2005-08-19 16:24:52 »
Hi,

We have a big problem concerning FF7 PC French.
The Cetra Patch doesn't work on the french ff7.exe.

Does anyone have a french patch here for the musics please ?

Aaron

  • *
  • Posts: 2818
    • View Profile
    • http://aaron-kelley.net/
FF7 PC French PSF Musics
« Reply #1 on: 2005-08-19 16:32:28 »
There is currently no solution available for anything except the English version.

Ornthalas

  • Guest
FF7 PC French PSF Musics
« Reply #2 on: 2005-08-19 17:53:43 »
I have seen someonse no another topic here who made a french patch. However, the link is dead...

If someone could tell me how to create the patch, what to search in the ff7.exe and a doc of the structure of a Cetra patch, I could try to make it...

Ornthalas

  • Guest
FF7 PC French PSF Musics
« Reply #3 on: 2005-08-26 07:57:19 »
Can someone tell me how these patches are made please (especially Cetra patch...)
I want to try programming a french patch

dziugo

  • *
  • Posts: 1470
    • View Profile
    • A new copy of FF7 thanks to Salk. Pack (zip/rar/etc) your saved game before sending it to me.
FF7 PC French PSF Musics
« Reply #4 on: 2005-08-26 11:04:28 »
Structure of Cetra patch:

Code: [Select]
[Patch] //Header :P
Description=Cool patch for ff7 //What's that patch for... Simple string terminated with '\n'
NumReg=3 //If your patch does any registry modifications, it's the number of those.
RegEdit1=HKLM\Software\Square Soft, Inc.\Final Fantasy VII\CoolEntry1:Binary:012345678 //the first registry edit, here: binary editing
RegEdit2=HKLM\Software\Square Soft, Inc.\Final Fantasy VII\CoolEntry2:DWord:7821 //our second entry, here: inserting some DWORD value
RegEdit3=HKLM\Software\Square Soft, Inc.\Final Fantasy VII\CoolEntry3:String:\Program Files\FF7\ //our third entry, here: inserting some String
NumPatches=2 //Number of RAW-patches following

[Patch1] //first RAW-patch header
Search=4B56AC120000C6 //binary string to look for in FF7 exe
Suggest=$2CAA56 //the offset where to look first (searching doesn't work?)
Replace=4B56AC120100C6 //binary string to change it for
Name=CoolPatchEntry1 //Not important... i think

[Patch2]//second RAW-patch header...
Search=FFFFFF98FFFFFF66FFFFFFBA //same as above
Suggest=$2134AA //same as above
Replace=FFFFFF98FFFFFF66FFFFFF00 //same as above
Name=CoolPatchEntry2 //same as above


Well... good luck programming the french patch :P