Temporal Flux FAQ
Contents
- 1 How can I quickly and easily listen to songs that I've edited?
- 2 How do I know which string index dialogue is coming from?
- 3 How do I test my hack? It's huge!
- 4 I changed around a song's instruments, and now it plays briefly when I first load the ROM.
- 5 When I edit a certain map, it messes up somewhere else!
- 6 When I use select tiles in the Overworld Editor, they come out different on the map. Why?
- 7 Why doesn't my new Overworld Exit work?
How can I quickly and easily listen to songs that I've edited?
Have a save game by Crono's house, and then enter PAR code 7E1B9Cxx, where xx is the song you want to play. It'll instantly stop playing the town music and begin with the new one.
JLukas
How do I know which string index dialogue is coming from?
One of the first few Commands in each area using strings should be StringIndex which specifies where the strings are being loaded from in the ROM. The address listed here is also listed in the string editor (though the first digit will be different, due to ROM-to-file-offset conversion).
ZeaLitY
How do I test my hack? It's huge!
Many roms have debug rooms that allowed the programmers to skip to various parts of the game to test stuff out and not have to play through the game to get to other worlds, locations and changes. I think it's a good idea for people to code one themselves, a room that won't be in the final, just have people that warp you to locations upon talking to them, different time periods, a good little space that will help with getting places and such, like an in game shortcut. When the hack is complete, it can be deleted, or left as a secret of sorts.... all kinds of possibilities.
Chickenlump
I changed around a song's instruments, and now it plays briefly when I first load the ROM.
Song 00 (Silence) is an actual song used during the loading of Chrono Trigger when it is first booted up, but you cannot hear it because all the instruments are silent. Sometimes, a pointer to the song recently edited might get copied to Song 00's location. If this occurs, simply go to Song 00 in Temporal Flux and hit Write to Memory, Save.
JLukas
When I edit a certain map, it messes up somewhere else!
Locations are not the only store of data; maps are also correspondent to particular locations, meaning if you load Map 3 in an unused location, everything on Map 3 (which is in the Black Omen) will show up with whatever tileset you have loaded (probably looking like a bunch of garbage). Any edits to Map 3 will occur in the Black Omen as well, since both its location and the one you're editing use that map.
Geiger
When I use select tiles in the Overworld Editor, they come out different on the map. Why?
The top half of the Overworld tilesets is reserved for Layer 1, and the bottom for Layer 2. Layer 2 tiles pasted while working with Layer 1 will result in their Layer 1 equivalent, and vice versa, so painting a shore in Layer 1 might equate to part of a house. Make sure you're in the right mode.
ZeaLitY
Why doesn't my new Overworld Exit work?
At this time, Overworld Exits only work with certain tiles. Try pasting a Layer 2 tile that lies beneath other Exits on the map where you have your new exit.
A more technical reason for why an exit cannot just be any tile on the Overworld maps is that entering an exit takes precedence over boarding the Epoch (meaning if you were to ever land the Epoch on an exit, you would never be able to take off again). To avoid this issue, the programmers coded the Epoch so that it could not land on an exit.
Also, unlike Locations which actually build an "exit map" when they load, Overworld exit information is coded directly into the tile properties, essentially making it a part of the map proper. Allowing every tile to be an exit would disallow the Epoch to land anywhere at all.
Geiger
From: Modification