Glitchy Characters on Overworld Chocobo
#3
The low byte of the sprite address is in $6A, middle byte in $6B and high byte in $6C. The only solution I see is adding an exception before EE/8980 where you check the offset and change it in case it match the offset of your character riding sprite. Let's take Terra's example and assume she has a riding sprite at F0/6820. Her default riding sprite is at D5/0180.

Code:
01) LDA $6A     (load calculated low byte)
02) CMP #$80    (compare loaded low byte to expected one)
03) BNE  $????  (branch to step 16 if it doesn't match)
04) LDA $6B     (load calculated middle byte)
05) CMP #$01    (compare loaded middle byte to expected one)
06) BNE  $????  (branch to step 16 if it doesn't match)
07) LDA $6C     (load calculated high byte)
08) CMP #$D5    (compare loaded high byte to expected one)
09) BNE $????   (branch to step 16 if it doesn't match)
10) LDA #$20    (we are here if the whole offset match the expected one)
11) STA $6A     (store new low byte)
12) LDA #$68
13) STA $6B     (store new middle byte)
14) LDA #$F0
15) STA $6C     (store new high byte)
16) Normal code at EE/8980

That would only be good for one character though. You would have to do a check for each character that has a riding sprite in the extended data, unless there is some order there which would allow to develop a calculation logic.

Edit: The other option would branch on the sprite ID and add a calculation logic for sprite IDs higher than 15.


Messages In This Thread
RE: Glitchy Characters on Overworld Chocobo - by madsiur - 01-05-2014, 08:51 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Chocobo Usefulness doofenH 4 3,739 04-20-2022, 11:25 AM
Last Post: madsiur
  Glitchy shop sprite (Expanded Palette Patch) Febreeze 1 1,844 08-11-2020, 12:50 PM
Last Post: Gi Nattak
  overworld tilesets CzarMalboro 7 5,252 08-22-2019, 07:20 AM
Last Post: CzarMalboro
  Clippin' Chocobo 13375K37CH3R 3 3,792 10-03-2017, 08:07 AM
Last Post: seibaby
  Glitchy Animation (Tools) Kugawattan 2 3,470 01-01-2016, 08:00 PM
Last Post: Kugawattan
  How to change Chocobo's palette? cdizzle 11 13,138 04-01-2013, 12:25 PM
Last Post: madsiur

Forum Jump:


Users browsing this thread: 1 Guest(s)