Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Fire Emblem Ultimate Tutorial.doc
Скачиваний:
1
Добавлен:
01.07.2025
Размер:
7.86 Mб
Скачать
  • ROM – Read-Only Memory, the “game file”

  • RAM – Random-Access Memory

  • Emulator – plays a game, imitating playing on the actual system

  • GBA – Gameboy Advance.

  • NDS – Nintendo DS.

  • DS – short for NDS… lol.

  • Hardware – we’ll just say it’s the ‘system’ the GBA uses to interpret data found from a cartridge or ROM.

  • Cartridge – the actual game as it is bought from a store.

  • Save file – contains save data for the game

  • Savestate – contains save data for a specific point in the game. One can come back to this moment in the game through a savestate.

  • ASM – assembly, the programming for the game

  • TSA – No one seems to knows for sure what it stands for. Use your imagination. It’s also called map data. Its purpose is to take a bunch of mixed-up disorderly graphics and make some sense out of it so that when you see the graphics in-game, they look nice. It’s a sort of “layout” for graphics. Hard to explain.

  • Debugger – a program that helps debug or a game, or search for bugs, find the cause of them, and fix them. It’s also used to find other things though.

  • Debugging – the act of using a debugger for its said purpose.

  • Hacking – editing a ROM.

  • Modding – another term for hacking, less juvenile I suppose.

  • Formatting – preparing something to be inserted or used

  • Patching – applying changes to a game.

  • Patcher – a program that does patching.

  • Utility – a tool.

  • Text – words, characters, script, all types of writing.

  • Graphics – ‘pictures’, ‘images’, visual aspects of the game.

  • Frame – a still picture, one part of an animation.

  • Animations – ‘moving’ pictures—frames put together to give the appearance of something moving.

  • Compression – a way to scrunch up data as to save space.

  • LZ77 – A type of compression. Used with graphics, TSA, palettes, and other data.

  • Huffman – A type of compression. Used in text.

  • RLE – Run-length encoding. A type of compression that saves space by scrunching up strings of data.

  • Strings – hexadecimal bytes one after another.

  • Hexadecimal – “Base 16”, a way to count, essentially. To denote hexadecimal, one can use various prefixes, such as ‘0x’ and ‘$’. The basic counting is as follows: 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10. For simplicity purposes sometimes people are lazy and do not put a ‘0x’ before 0-9, since the decimal and hexadecimal values are the same.

  • Decimal – “Base 10”, another way to count. Most people are familiar with this.

  • Binary – “Base 2”, another way to count, sort of. Only uses 0s and 1s. Google for more info on binary (I RARELY use it).

  • MS – Microsoft

  • Converter – something that converts one thing to another type of thing. For example, MS Calculator can convert hexadecimal to decimal and vice-versa.

  • GBAGE – GBA Graphics Editor, the best GBA graphics editor for uncompressed and LZ77 data, made by Nintenlord.

  • EA – Event Assembler, used to edit and insert events. The best way to edit events.

  • NLZ-GBA – an older program similar to GBAGE, but outdated.

  • unLZ-GBA – an obsolete graphics editor that I probably shouldn’t even mention.

  • Text Editing Suite – an obsolete way to edit text.

  • FEditor Adv – the best way to edit text, animations, and portraits. A program by Xeld, a veteran Fire Emblem hacker.

  • Song Editor – A program by Zahlman that can rip and insert songs that use the Sappy engine.

  • Sappy engine – a way that Fire Emblem and other GBA games can interpret music data.

  • Sappy – it is also a program that is somewhat obsolete that was used to insert music.

  • MIDI2GBA – a program used to convert MIDIs to GBA data.

  • tr.exe – a program used to convert MIDIs to GBA data and then put it inside a ROM such that one could listen to the song by emulating said ROM.

  • MIDI – music file that pretty much says what instrument to use to play what notes of what kind. A simple music file that tells what to play as opposed to a recording (WAV).

  • WAV – a recording of sound waves.

  • MP3 – a compressed WAV.

  • Sprite – a graphical object (can’t think of a better way to say this). Usually refers to portraits or battle graphics (the characters that you see move in animations) but can also refer to other graphics.

  • Backgrounds – background graphics that don’t really move.

  • Map sprites – refers to the overworld sprites that a player moves on the map.

  • Hex editor – a program that edits data in hex (and often includes an ASCII editor to the side).

  • ASCII text editor – a text editor that edits text in ASCII ‘format’—google for more information. Standard for many things. Fire Emblem uses this, but it compresses the text with Huffman (not that you needed to know that).

  • Offset – a place in the ROM denoted by a number. For example, the song table is located at 0x69D6E0.

  • Hex – short for hexadecimal.

  • Byte – one ‘unit’ of editing. Corresponds to a number. Bytes can go from 0x00-0xFF (0-255 in decimal).

  • Bits – smaller than bytes. Google.

  • Word – 4 bytes put together. Common input. Also the size of a pointer.

  • Half-word – two bytes, half a word.

  • Pointer – a word that points to some data. In ROMs, it has a prefix of 0x08 to it because the hardware accesses all ROM data at 0x08000000.

  • Little endian (byte reversal)- Reverses bytes. 0x12345678 becomes 0x78563412. Practice makes perfect. The easiest way to do this is to split up words into bytes.

  • Big endian- google it, not really too important for you to know.

  • Word-alignment – Aligning data by the word. Is recommended all the time, but in some rare cases, isn’t necessary. That means that data should start at an offset that ends in 0x0, 0x4, 0x8, or 0xC. 0x57120C is word aligned. 0x571205 is not. Think even/odd, except only the values mentioned above are even, and everything else is odd. XD

  • Table or Array – look up what an array is. XP. I really can’t explain this—you’ll have to figure out yourself along the way.

  • Nightmare – a program that edits data tables.

  • Modules – files with information on what data nightmare should edit. Also called “Nightmare Modules”.

  • NMM – stands for Nightmare Modules.

  • Nightmare 2.0 – a new version of Nightmare recreated from scratch by Xeld. Has more features than the original Nightmare along with some fixes.

  • ZIP archive – a way of compressing files. It takes a bunch of files and puts them into one archive. The files can later be extracted (taken out) from it. It is a very common format. This is something on your computer, not used in-game. It’s used to share lots of files without having to download each one individually.

  • RAR Archive – Same as above, but better. Also less common. Requires winRAR to use.

  • 7Zip Archive – Supposedly the best file archiver there is, but not used as much, and thus less convenient. Requires 7zip or winRar to use.

  • Java – google it. Is required for FEditor Adv to work (as well as some other programs like Nightmare 2.0).

  • Net framework – required for Nintenlord’s various awesome programs to work. The alternative for non-Windows users is Mono.

  • Tilesets – sets of tiles (lol). It’s what is used to make a map.

  • Mappy Map Editor – the main program used to make maps.

  • MAR Array File – a file that can be exported from Mappy. It’s used in conjunction with the MAR Array Inserter to insert maps.

  • MAR Array Inserter – inserts maps.

  • Repointing – making a pointer point to something else. Also involves moving data.

  • Expanding – adding space/room for editing. Making something larger.

  • Kilobyte/Megabyte/Gigabyte/ - KB, MB, and GB, google these and make sure you know them. Just bigger ways to count bytes.

  • Palette – a range of colors. When one talks about a palette he’s talking about the colors used in some sort of graphic or art. Most graphics only use 16 colors, including the transparent color, but on occasion more colors are used (for things like CGs).

  • VisualBoyAdvance – most people’s emulator of choice, almost always referred to as “vba” for short.

That’s all I can think of for now. Anything else I’ll mention later in the tutorial. I think it’s enough definitions for now, anyway.

Chapter 2: Using Nightmare Modules

Nightmare is useful for editing a lot of things. The first things a person thinks of are stats, growths, and classes, but it can do more than that. Each game has different modules though. Fire Emblem 7 has the most modules, for example. And FE8 might have some modules for say, the Valni Tower, which FE7 won’t have. That being said I will go through how to use as many Nightmare modules as I can.

First, you need to get your clean Fire Emblem 7 (U) #1235 ROM. (U) is for U.S.A., #1235 is the ROM #. I nor anyone else can help you with this, so you have to be self-sufficient here. If you know how, you can always rip it straight from the cartridge. I don’t suggest you download any ROMs unless you have the original game either. :\

To get Nightmare Modules as well as everything else you’ll need to hack, I suggest you go here: http://www.feshrine.net/hacks.html

I upload anything that I think might be useful to someone on that site. Just use the menus and search until you find it.

Once you’ve downloaded them, you have to extract the files. winRAR can extract ZIP, RAR, and 7ZIP files, so you might as well just download that and install it. Then right-click and hit “extract here” or “extract to ‘X FOLDER’” on the Nightmare Modules’ file and some folders will pop up.

Navigate to the folder with your stuff. If Nightmare.exe (the actual nightmare PROGRAM) is not included, you can also download that off of the website separately.

Double-click Nightmare to load it. Go to File-> Open Rom… or Ctrl+O and then locate your game. Select it. Then do Modules-> Load Modules and select some modules you would like to use. Nightmare modules have the .nmm extension to them. If you want, you can just load a ton of modules.

Once you’ve loaded your modules, you’re ready to start editing, technically. However, I’m going to go through some of Nightmare’s (the original Nightmare’s, NOT Nightmare 2.0’s) menu options.

File-Open ROM opens the ROM, of course. Do this BEFORE loading your modules.

File-Close ROM closes the ROM. I actually suggest just closing Nightmare and then reloading Nightmare whenever you want to open another ROM.

To save changes, you must first hit “apply changes” (under the File menu) to whatever area you are changing. Easier than that, just hit “enter”. To save all of your accumulated changes, do File>Save ROM, or just do Ctrl+S.

To unload a module and take it off of your list, do Modules->Unload Module.

“Link Rom to Modules” makes it so that whenever you load that ROM, it’ll automatically load those modules. However, if you move or rename the ROM or the modules, it won’t work, and will instead give an error message.

The other options aren’t too useful, so I wouldn’t bother with them.

Now, if Nightmare isn’t working for you, there are several things to look out for:

  • Make sure you are applying your changes correctly

  • Make sure you open the right ROM

  • Make sure if you’ve linked ROMs and modules together, you don’t move or rename the files (it’ll mess it up)

  • Make sure you open the right modules for the right game, and that they are compatible

Here are some basic Nightmare issues. After the issue are a list of numbers that tell which things to look at. If there is another issue, it’s possible one of the mentioned things applies to your problem as well.

1. Check if you have the right ROM #- 1235, the American version.

2. The ROM is unzipped, meaning, it's a .gba file and not a .zip file. Right-click and extract.

3. Module is not extracted/unzipped. Right-click and extract. Download WinRar if needed.

4. Check if files are updated to the most recent ones.

5. ROM is a .gba file.

6. ROM may need to be expanded.

"The stats are absolutely crazy! Lyn has -128 speed!"

1.

4.

"The Module and ROM are not compatible."

1.

2.

3.

4.

5.

6.

"It's just not loading. It says I'm trying to crash Nightmare."

2.

3.

5.

Now, about the different aspects:

At the very top is what module you are using.

Below that is a list of the different entries in the module you can edit. Usually the entries are labeled so that you know what you are editing.

Below that is the actual data to edit. There are different types of slots. Dropdowns allow you to choose from a list (although sometimes those lists limit you to only certain values). Othertimes you can edit data in decimal—for example, character stats are in decimal. If it was in hexadecimal, I’m sure it’d confuse some of you a bit more.

There are also signed and unsigned bytes. Some values can go up to 255. Other ones become negative once they reach 127 or so. I really forgot the details of signed/unsigned bytes but because of this and other reasons, stats can’t go to like 255.

Whenever you make a change to an ENTRY, you have to press ‘enter’ to apply changes. When you switch entries (say you were editing Eliwood and then you go to Lyn, it’s the same module but a different entry) you have to press enter again for the new changes you make. (You press enter AFTER the changes, btw.)

When you’re done with all your changes, then you can press Ctrl+S.

Here’s an image to help with the Nightmare layout:

That’s pretty much all you need to know about using Nightmare in general. Good luck with your Nightmare editing!

Соседние файлы в предмете [НЕСОРТИРОВАННОЕ]