Note: You need to know how to use a hex editor and know binary.
Be sure you have applied the "Remove Beginning Locks" patch or this will NOT work!
Also, this won't work properly if you use an existing save file. A new one must be made AFTER this has been done.Welcome. This is a tutorial on how to change the seed the seed satchel starts out with. If you're a beginner hacker, this tutorial might not be for you.
Okay, so first off you need a hex editor (Obviously). You also need a calculator that can convert binary to hexadecimal and do bit-wise operations. I recommend Windows Calculator in Scientific Mode.
Step 1: Okay. This is pretty much the most important step. Open your calculator and in binary mode, enter "100000". In hexadecimal, this is 20. Now, basically the game uses the upper 5 bits in this value to add to a base address to get the memory address to write to. The lower 3 bits are the bit index (0-7). Right now, the default value is 20, which sets bit 1 on C69E. Now, in another calculator window, in decimal or hexadecimal mode, hit the number of the seed you want and convert to binary. Here's a list.
00 - Ember
01 - Scent
02 - Pegasus
03 - Gale
04 - Mystery
So if we wanted to start with Pegasus Seeds, we would enter 02. Now, convert it to Binary and we'll have 10. Now go back to the other window, and on the binary tab, click the OR button and enter the binary code from the other window and hit =. You should end up with 100010, or 22.
Step 2: Now lucky for us, the value is in the ROM and just sitting there begging to be edited. In your hex editor, goto address 0xFC53B. There, you'll find 20. Change that to the value we got. For this demonstration, we'll enter 22.
Step 3: Well, now we changed the default seed, but it by default isn't set. Instead, you'll see an Ember seed with 9L- and it will be unusable. Well, we're going to need to write a custom ASM script for this one, but lucky for you I already have!
Now, in your hex editor, go to address 0x1FF08. You should see C9. If you don't, you haven't applied the "Remove Beginning Locks" patch. Now, make sure your hex editor is on OVER mode, which means it will overwrite the existing data when you type. Now, type in this code, or bytes, in the data section of your editor, which is commonly the left. However, replace the
** with the index of your seed (Like 02 would be Pegasus).
Remember to not hit backspace if you mess up! Use the arrow keys instead!FA 9E C6 FE 00 C0 3E ** EA C4 C6 C9
Alright, so basically that's an ASM code that checks if the only seed you have is the starting one (**), and if it is, it equips it. This allows us to also keep the way the saving was before where the seed would stay equipped after we shut the game off.
But that's it. Here's some screenshots.

Hopefully it wasn't too complicated. Some time I'll make a tool to do it instead. Oh, and right now you can't change the "Ember" to something else. You're going to have to either wait for a text editor or hex edit the text instead.
~Lin