Tlachtli
Crit happens.
- 267
- Posts
- 12
- Years
- Faraway place
- Seen May 14, 2019
So this happens to me all the freaking time when i'm adding new text in my pokémon firered rom hack. Any solution to this?
It doesn't happen when I edit texts, only when I add new ones.
https://youtu.be/jj1Jdjv9_BM
For text adding, I'd strongly suggest using a script editor like XSE. All you'd need to do is:
Code:
#org 0x[address to insert]
= Write your raw text here.
Code:
#dynamic 0x[address to start looking for free space]
#org @anylabelhere
= Write your raw text here.
Code:
#org 0x[address to insert]
= This is test line 1.\nThis is test line 2.
This is test line 1.
This is test line 2.
And it even has a built in text adjuster (ctrl-t) that will do line breaks and special characters for you.
After it's inserted you just point to the text in your script like you would normally.