If you are still using the old URL (datacrystal.romhacking.net), please update your bookmarks! The old URL may stop working soon.
The current URL is datacrystal.tcrf.net.
The current URL is datacrystal.tcrf.net.
Final Fantasy VI/Combat Menu Format: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(→top) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{subpage}} | |||
This is the format for combat menus, such as spell lists, ability lists, item lists, etc. The format is loaded into RAM and then updated as necessary (specifically, arguments to determine names for selections). It's run once for each line. | This is the format for combat menus, such as spell lists, ability lists, item lists, etc. The format is loaded into RAM and then updated as necessary (specifically, arguments to determine names for selections). It's run once for each line. | ||
Note that these only set up *graphics*. No gameplay is affected by these formats. | Note that these only set up *graphics*. No gameplay is affected by these formats. | ||
* C1:4BAC: Equipment (R-Hand L-Hand box) | |||
* C1:4BE9: Tools | |||
* C2:E036: Magic | * C2:E036: Magic | ||
* C2:E045: Lore | * C2:E045: Lore | ||
Line 28: | Line 33: | ||
* 1A uses 1 byte as an argument to display an Esper name. | * 1A uses 1 byte as an argument to display an Esper name. | ||
20 - FF simply draw a tile to the line. See [[ | 20 - FF simply draw a tile to the line. See [[Final Fantasy VI:TBL|Battle Dialogue]] |
Latest revision as of 14:58, 24 January 2024
This is a sub-page of Final Fantasy VI.
This is the format for combat menus, such as spell lists, ability lists, item lists, etc. The format is loaded into RAM and then updated as necessary (specifically, arguments to determine names for selections). It's run once for each line. Note that these only set up *graphics*. No gameplay is affected by these formats.
- C1:4BAC: Equipment (R-Hand L-Hand box)
- C1:4BE9: Tools
- C2:E036: Magic
- C2:E045: Lore
- C2:E04D: Magitek
- C2:E05A: Dance
- C2:E067: Rage
- C2:E074: Item (Also Throw)
- C2:E083: Esper (submenu in the Magic menu)
- C2:E165: Row (Left of Main menu)
- C2:E16B: Def. (Right of Main menu)
- C2:E172: R-Hand L-Hand
- 00 marks the end of a line
- 02 uses 1 byte as an argument to write a number, 2 tiles right-aligned.
- 04 uses 1 byte as an argument to decide on the tilepalette for tiles placed.
- 05 uses 1 byte as an argument, and creates that many empty spaces.
- 06 uses 1 byte as an argument to display a Magitek name.
- 0E uses 1 byte as an argument to display an Item name (includes symbol, if there is one)
- 0F uses 1 byte as an argument to display a Spell name.
- 12 uses 1 byte as an argument to display an item type. (needs some research)
- 16 uses 1 byte as an argument to write a number, 3 tiles right-aligned.
- 17 uses 1 byte as an argument to display a Dance name.
- 18 uses 1 byte as an argument to display a Rage name.
- 19 uses 1 byte as an argument to display a Lore name.
- 1A uses 1 byte as an argument to display an Esper name.
20 - FF simply draw a tile to the line. See Battle Dialogue