Final Fantasy Hacktics

Modding => Help! => Topic started by: TidesofMercy on April 05, 2021, 10:06:23 pm

Title: Resource.zip Issue
Post by: TidesofMercy on April 05, 2021, 10:06:23 pm
I am working with the resource.zip file for the first time with FFTPatcher. I create the file in the FFTPatcher folder that I have created along with all of the FFTPatcher files. After I make the edits to the text files and rezip the file, FFTPatcher doesn't open.

Any idea as to what I have done to mess it up? When I delete the resource.zip file it opens fine.
I think I am just bad at this >_<

Thank you for your assistance!
Title: Re: Resource.zip Issue
Post by: Jumza on April 06, 2021, 09:31:33 am
Let's make sure you're doing the process correctly! Here's a step by step.

Assuming FFTPatcher v0.493 Beta v6
Open FFTPatcher
Click File -> Generate Resources.zip
Make sure to generate the file in the same directory as FFTPatcher (and keep it there)
Open the zip -> Click on the PSP folder (If that's the version you are editing)
Say you want to edit SkillSets.xml, if you don't have something that knows how to edit xml's, export the file, change it in notepad, and import it back into the same folder it was in in the zip file without changing the name. If you do have something that can edit xml's, just double click on the file in the zip and edit it there, and save.
Close and open FFTPatcher again, your changes should be present.

Make sure you are preserving the formatting of the file while editing the entries. Here is an excerpt from the PSP's SkillSets.xml

  <SkillSet byte="05" name="Fundaments"/>
  <SkillSet byte="06" name="Items"/>
  <SkillSet byte="07" name="Arts of War"/>

Let's say you want to edit Fundaments to Witchcraft (idk), the file now looks like this

  <SkillSet byte="05" name="Witchcraft"/>
  <SkillSet byte="06" name="Items"/>
  <SkillSet byte="07" name="Arts of War"/>

Hope this helps!