Final Fantasy Hacktics

Modding => Help! => Topic started by: DuxorW on January 08, 2012, 05:57:47 am

Title: Custom formula request
Post by: DuxorW on January 08, 2012, 05:57:47 am
As I begin learning ASM hacking, would it be possible for someone to make a formula hack for me that replaces 08 Dmg_F(MA*Y) with DMG_F(MA*Y)100% status? The other 100% status inflicting formulas either involve PA damage, %HP damage, or don't deal damage at all, unless I'm overlooking something...

Thanks
Title: Re: Custom formula request
Post by: Pride on January 08, 2012, 09:34:34 am
Copy and paste into a Notepad and save it as a .xml file. Add it to your folder that has FFTorgASM and apply it with that.

<?xml version="1.0" encoding="utf-8"?>
<Patches>

  <Patch name="Formula 8 inflicts 100% Status">
    <Description>Formula 8 inflicts a Status 100% of the time with All or Nothing flagged on the status effect.</Description>
    <Location file="BATTLE_BIN" offset="121DD4">
      00000000
    </Location>
  </Patch>

</Patches>
Title: Re: Custom formula request
Post by: DuxorW on January 08, 2012, 11:12:33 am
Thanks! This worked perfectly.