After applying several Leet Sketcher's patches, testing and not crashing the game. I thought it went well until I discover that if I cast Imp on Live Sr Behemoth and kill it, the death version sprite that came out is corrupted.
Well the easiest fix is removing the patche(s) that cause this problem. Testing if the game doesn't crash is a good start but it doesn't mean there won't be more problem. You may also have a patch conflict that use the same free space and this is the result. I would inform leetsketcher when you find the culprit..
06-19-2020, 11:41 AM (This post was last modified: 06-19-2020, 11:41 AM by doofenH.)
(06-19-2020, 10:22 AM)madsiur Wrote: Well the easiest fix is removing the patche(s) that cause this problem. Testing if the game doesn't crash is a good start but it doesn't mean there won't be more problem. You may also have a patch conflict that use the same free space and this is the result. I would inform leetsketcher when you find the culprit..
Found the problem in using V1.0 us rom. If I apply Leet's Imp Skimp & Unaffected Rows from http://assassin17.brinkster.net/, then undead sprite is corrupted.
if we're worried about altering X's value from vanilla, we can probably edit only the first 2 instructions.
another alternative is to leave all 4 instructions untouched, change "JSR $2E75" to "JSR $2E77" (or "JSR $2E74"), and the caller's "LDA #$01" to "LDX #$02" (or "LDX #$01").
10-17-2020, 01:15 PM (This post was last modified: 10-21-2020, 02:41 PM by SilentEnigma.)
Howdy,
Gi Nattak referred me to this thread when the same bug was reported in ROSE, which has both Imp Skimp and Unaffected Rows.
(10-16-2020, 09:51 PM)SilentEnigma Wrote: The patch periodically compares each enemy's "displayed" Imp status with its "actual" Imp status, and if the two disagree, then the displayed sprite is updated accordingly.
The problem is, sometimes the status bit for the "actual" Imp status is not up to date, leading to at least two issues:
The SrBehemoth fight. The undead SrBehemoth replaces the living one in the same slot, and the Imp bit never gets cleared. The undead SrBehemoth is immune to Imp. The patch runs the check, and invalidly attempts to replace the normal enemy sprite with an Imp.
The Pugs fight. According to LeetSketcher, their appearance should not revert from Imp to normal whenever they step back, because they still have Imp status at the time. But the Pugs' statuses DO actually revert to normal automatically after stepping back; just not right away with the bit checked by the patch. (With the patch applied, Pugs will abruptly change from the Imp sprite to normal when the "actual" Imp status bit finally clears -- not very appealing.)
To fix the above, revert these two subroutine calls to the original:
Code:
Executes upon new enemy appearing (i.e. SrBehemoth; start of battle)
> Imp Skimp v1.4:
C1/9369: 20 1B D7 JSR $D71B
> Original FF3us v1.0:
C1/9369: 20 7C 25 JSR $257C
I have also looked into Assassin's solution above for Unaffected Rows, and have found the following:
The code called out by Assassin does not normally execute, at least not during the SrBehemoth fight. My guess is that it only applies to "hacks that introduce formation switches differing from SrBehemoth's" --- so, this is not not a problem for Vanilla FF3us formations.
The code is indeed bugged.
(06-20-2020, 01:36 AM)assassin Wrote:
try changing C2_2E75_helper's
LDA $B1/pha/.../pla/sta $b1 to: ldx $b1/phx/.../plx/stx $b1 .
if we're worried about altering X's value from vanilla, we can probably edit only the first 2 instructions.
Assassin's first suggestion, the X-preserving variant, fixes the bug.
The full revision should work too. After the function, X gets written before the next time it gets read.
03-12-2021, 12:21 PM (This post was last modified: 03-12-2021, 03:59 PM by Dev J.)
Wondering if anyone could update Imp Skimp with the fix, to a standalone patch? Or, short of that, make available the Unaffected Rows patch, which is BeheRows.zip, since Assassin17's site is permanently gone. I'm using Dr. Meat's Relocalization overhaul, which has the Rows patch included, so I can't get rid of it without the anti-patch that's supposedly included in Assassin's original zip. My only other option is to get rid of Imp Skimp, which I'm loathe to do since I love that patch. But it does seem to be causing problems when characters are imped, the game can freeze at times.
Regardless of that issue, it seems like Imp Skimp & Unaffected Rows can't be used together without Skimp being fixed or Rows removed, so if anyone can help, I'd appreciate it.
EDIT: I finally figured out the freezes were caused by my particular usage of Geiger's Select Any Command patch. Sometimes I give a character 4 battle commands and leave out the item command. And I substitute Mug for Attack on everyone. So when they're imped, the game freezes since there's no Item or Attack command: the only 2 you can use as an imp. So that was my bad, not any patch. Unaffected Rows has now been removed and things are going well so far with imp issues, though I expect to encounter some later with Behemoths while still using the unfixed Imp Skimp, if I understand the above posts correctly.
03-12-2021, 01:59 PM (This post was last modified: 03-12-2021, 03:12 PM by Dev J.)
Thanks so much for taking the time to put up that file. Sorry I presumed the site was dead; that happens so frequently with older FF3 hacking sites that I got used to using Wayback to try to get access to files. In this case it could access the main page but the files were not cached. Usually when I see that, the site is dead, but I guess it's just a temp outage.