FF6 Hacking
Text animation Snes and Steam version? - Printable Version

+- FF6 Hacking (https://www.ff6hacking.com/forums)
+-- Forum: Discussion Forums (https://www.ff6hacking.com/forums/forum-5.html)
+--- Forum: Magitek Research Facility (https://www.ff6hacking.com/forums/forum-9.html)
+--- Thread: Text animation Snes and Steam version? (/thread-3515.html)



Text animation Snes and Steam version? - q8fft - 08-10-2017

I noticed in the FFVI steam version that the right-to-left text direction option is available in the game.!!

Do this option too in Snes Version ??

Code:
C8 = left [text come left-to-right LTR]
C3 = right [text come right-to-left RTL]


[Image: C8Hq3fJ.png]


RE: Text animation Snes and Steam version? - madsiur - 08-13-2017

No it is not present. Dialogue code contains nothing above $7F. All the special characters are also in the $10-$1F range.


RE: Text animation Snes and Steam version? - Tenkarider - 08-13-2017

which reminds me... anyone has any information on how to tweak expand dialogue code? special characters in particular


RE: Text animation Snes and Steam version? - madsiur - 08-13-2017

(08-13-2017, 12:01 PM)Tenkarider Wrote: which reminds me... anyone has any information on how to tweak expand dialogue code? special characters in particular

$12, $17, $18 might be free, check in bank $C0. Just follow the code in DTE routine when it check if byte < $20. After this the code check if it is an actor name ($00-$0F) then it's a bunch of if / else for remaining possibilities. There is some dummy code in the region where the last if / else is, you can put you condition for a unused byte and new code there. This is what I did for my text centering special character. I think I used $18 but I don't remember exactly.