Users browsing this thread: 2 Guest(s)
Final Requests for Help

#24
Posts: 617
Threads: 49
Thanks Received: 0
Thanks Given: 5
Joined: Feb 2017
Reputation: 25
Status
None
On my personal list has been fixing battle animations. I've fixed up the animations for Safe 2, Shell 2, the Super Ball (as a thrown weapon the character would take 2 steps forward and 2 steps back), and changed the animations for Rasp 2 and Kappa's Morph to be more appropriate for the ability. My last animation is one that I've been stuck on for 3 days, with no measurable progress. So, I figured I'd throw it here in case anyone knows.

I have replaced the Esper Raiden with Leviathan. The graphics replacement was easy, but there's something tied to the sprite itself that is:
1. Causing the esper sprite to display underneath the enemies
2. Displaying the "slice through" graphic on the enemies, rather than displaying damage. This happens even when I change the spell to a damaging spell. It DAMAGES the enemies, but instead of displaying the damage numbers, it slices them in half.

I've gotten far enough to know that it is tied to Byte 10 of the animation, and that Raiden's Byte 10 value (6B) is reading from this code:
Code:
Raiden: 6B - C2/EBFE
C2/EBFE: 20 2D F0     JSR $F02D
C2/EC01: A2 8C        LDX #$8C
C2/EC03: 01 DA        ORA ($DA,X)
C2/EC05: 22 00 24 C1  JSR $C12400
C2/EC09: 20 70 FA     JSR $FA70
C2/EC0C: 22 C6 9E C1  JSR $C19EC6
C2/EC10: FA           PLX
C2/EC11: 22 80 24 C1  JSR $C12480
C2/EC15: 20 87 FA     JSR $FA87
C2/EC18: EE B0 62     INC $62B0
C2/EC1B: 60           RTS

I tried replacing that code with Terrato's (C2/F25D), since that graphic is almost the exact same size, replacing the LDX #$84 with Raiden's LDX #$8C, but that just crashes. I know from nop-ing out one function of the code at a time, that the code for slicing through the enemies is either the LDX #$8C or the ORA ($DA,X), and I suspect it's ORA ($DA,X) since Odin's code is just LDX #$8B/ORA ($DA,X). Most Espers have an ORA ($22,X) at that spot. However, but any edits to either of those 2 ops just causes crashing. Any ideas?

I also started down an alternate path, thinking that I could put Leviathan in Ragnarok's spot, and have Ragnarok replace Raiden, since an instant death animation fits with Metamorph. I have been able to edit Ragnarok to be a damaging spell, so i know that works. However, Ragnarok is the one esper that you can't edit through Final Fantasy 3 Sprite Editor, so I can't just do a graphic replacement and call it good. I found that the slot for Ragnarok's graphics data (D2/77D0), is just a bunch of zeroes, and that there's some other function that's putting the graphics in.

So yeah, if anyone can help me figure how to do 1 of the 2 following, I'd be immensely grateful:
1. Make Raiden's Byte 10 deal damage
2. Swap the sprites for Ragnarok and Raiden


Projects:
FFVI: Divergent Paths (Completed) - a complete storyline and gameplay hack of FF6 that adds Leo as a playable character
  Find
Quote  



Messages In This Thread
Final Requests for Help - by PowerPanda - 04-05-2021, 11:28 PM
RE: Final Requests for Help - by Subtraction - 04-05-2021, 11:44 PM
RE: Final Requests for Help - by seibaby - 04-06-2021, 07:24 AM
RE: Final Requests for Help - by PowerPanda - 04-06-2021, 09:36 PM
RE: Final Requests for Help - by madsiur - 04-06-2021, 09:56 PM
RE: Final Requests for Help - by Lightning - 04-06-2021, 10:55 AM
RE: Final Requests for Help - by madsiur - 04-06-2021, 08:35 PM
RE: Final Requests for Help - by PowerPanda - 04-06-2021, 10:28 PM
RE: Final Requests for Help - by C-Dude - 04-07-2021, 12:04 AM
RE: Final Requests for Help - by Drakkhen - 04-07-2021, 12:11 AM
RE: Final Requests for Help - by PowerPanda - 04-07-2021, 10:40 AM
RE: Final Requests for Help - by assassin - 04-07-2021, 10:17 AM
RE: Final Requests for Help - by Drakkhen - 04-07-2021, 11:03 AM
RE: Final Requests for Help - by assassin - 04-07-2021, 01:36 PM
RE: Final Requests for Help - by assassin - 04-07-2021, 09:15 PM
RE: Final Requests for Help - by PowerPanda - 04-07-2021, 06:02 PM
RE: Final Requests for Help - by assassin - 04-07-2021, 08:15 PM
RE: Final Requests for Help - by PowerPanda - 04-07-2021, 08:49 PM
RE: Final Requests for Help - by PowerPanda - 04-07-2021, 10:48 PM
RE: Final Requests for Help - by C-Dude - 04-08-2021, 01:49 PM
RE: Final Requests for Help - by PowerPanda - 04-08-2021, 04:51 PM
RE: Final Requests for Help - by C-Dude - 04-08-2021, 11:06 PM
RE: Final Requests for Help - by PowerPanda - 04-08-2021, 11:53 PM
RE: Final Requests for Help - by C-Dude - 04-16-2021, 10:32 PM
RE: Final Requests for Help - by PowerPanda - 04-11-2021, 02:17 PM
RE: Final Requests for Help - by Everything - 04-11-2021, 03:05 PM
RE: Final Requests for Help - by PowerPanda - 04-11-2021, 04:13 PM
RE: Final Requests for Help - by Everything - 04-11-2021, 06:15 PM
RE: Final Requests for Help - by Drakkhen - 04-11-2021, 06:23 PM
RE: Final Requests for Help - by Warrax - 04-12-2021, 03:17 AM
RE: Final Requests for Help - by PowerPanda - 04-11-2021, 08:21 PM
RE: Final Requests for Help - by PowerPanda - 04-18-2021, 01:42 PM
RE: Final Requests for Help - by madsiur - 04-18-2021, 07:34 PM
RE: Final Requests for Help - by PowerPanda - 05-06-2021, 05:27 PM
RE: Final Requests for Help - by SirNewtonFig - 05-06-2021, 08:49 PM
RE: Final Requests for Help - by Lightning - 05-07-2021, 11:19 AM
RE: Final Requests for Help - by SirNewtonFig - 05-07-2021, 01:55 PM
RE: Final Requests for Help - by Lightning - 05-07-2021, 02:51 PM
RE: Final Requests for Help - by SirNewtonFig - 05-09-2021, 08:13 PM
RE: Final Requests for Help - by PowerPanda - 05-07-2021, 06:00 PM
RE: Final Requests for Help - by Subtraction - 05-08-2021, 09:45 AM
RE: Final Requests for Help - by PowerPanda - 05-08-2021, 10:56 AM
RE: Final Requests for Help - by Lightning - 05-10-2021, 01:02 AM
RE: Final Requests for Help - by Subtraction - 05-11-2021, 08:08 AM
RE: Final Requests for Help - by PowerPanda - 05-11-2021, 10:02 AM
RE: Final Requests for Help - by PowerPanda - 05-09-2021, 10:46 PM
RE: Final Requests for Help - by MysticLord - 05-10-2021, 01:36 AM
RE: Final Requests for Help - by PowerPanda - 05-10-2021, 10:05 AM
RE: Final Requests for Help - by MysticLord - 05-10-2021, 05:54 PM
RE: Final Requests for Help - by PowerPanda - 05-10-2021, 09:30 PM
RE: Final Requests for Help - by Subtraction - 05-11-2021, 11:10 PM
RE: Final Requests for Help - by PowerPanda - 05-14-2021, 12:41 PM
RE: Final Requests for Help - by Subtraction - 05-14-2021, 11:59 PM
RE: Final Requests for Help - by Slowmo - 05-15-2021, 11:18 AM
RE: Final Requests for Help - by MysticLord - 05-15-2021, 11:36 AM

Forum Jump:

Users browsing this thread: 2 Guest(s)


Theme by Madsiur2017Custom Graphics by JamesWhite