Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Steiner and Eiko have all of Beatrix skills and the Tantalus groups are cool but they dont have skills like Zidane.
Now if this "FFIX Unleashed" PSX mod would come to Steam, also with the character mods, surely they could add more skills to the Tantalus group like was added to the regular characters.
Why not just add that old mod, instead of thinking of something new, all there needs to be done is configuring for Steam (which is probably complicated lol)
Also on another note, You can change the skills to match with other characters, which would mean Blank or Marcus could have Steiner's or Zidane's skills.
That would be so awesome !
Seriously, cant wait for that
Any ideas?
1) Commands : there are 48 different commands, like "Blue Magic" or "Item". The setup is in the file rdata.cs (_FF9FAbil_ComData). Modifying commands only change the castable abilities in battle ; it doesn't modify which ability whichever character can learn nor his ability list in the menu. If a command gives access to an ability list (like "White Magic" and unlike "Throw"), an external table is used, the "Command Ability list" and the datas of the command are the table position of the 1st ability + the amount of abilities.
2) Command Ability list : by default, it's a table of 192 numbers, which are identifiers of the abilities. The setup is in rdata.cs (_FF9BMenu_ComAbil). Beware that several data ranges are used by (two) different commands : Vivi's Black Magic and Double Black commands use both the same range for instance.
3) Character Command list : there are 20 command pairs, which are the character-specific commands available in battles, when Trance is off. The setup is also in rdata.cs (_FF9BMenu_MenuNormal). As some of the characters have two different command lists through the game (eg. Zidane can have his default commands or his SFX command), there are more command pairs than characters. The link "character - command pair" is made in the game script (external files of type .eb which are stored in the file p0data7.bin) ; here are those links :
- Zidane uses the command pairs 0 (default) and 16 (SFX)
- the other permanent party members use only one command pair, with the same ID as their character ID (1 = Vivi, 2 = Dagger, ...)
- Cinna uses the command pairs 8, 9 (both Steal) and 17 (SFX)
- Marcus uses the command pairs 10, 11 (both Steal) and 18 (SFX)
- Blank uses the command pairs 12, 13 (both Steal) and 19 (SFX)
- Beatrix uses the command pairs 14 and 15 (the same abilities overall but with different commands)
4) Character Trance Command list : same. The setup is in rdata.cs (_FF9BMenu_MenuTrance). There is a 3rd number here, indicating which command changes from normal to trance status (it's only used for AP learning ; the trance abilities of the indicated command are linked to the normal abilities).
5) Character Ability list : it consists of 16 lists, each containing 48 "PA_DATA", which are pairs Ability + AP required. The setup is in FF9/ff9abil.cs (_FF9Abil_PaData). It is the lists of abilities displayed (and usable) in the menu, both for the castable abilities and the supporting skills. It also defines the AP amount required for an ability to be learned. As for the character command lists, the link "character - ability list" is made in the game script and it is the same as the link "character - command pair" so refer to the list above. Note that there are 4 command pairs without abilities (the SFX ones) so nothing can be learned or displayed in the menu while the characters have these command pairs.
Also, another problem (annoying for the OP request) is that the supporting ability sub-menu is always disabled in-game for non-permanent characters. The check for enabling/disabling the supporting ability sub-menu is in FF9/ff9abil.cs at the function FF9Abil_HasAp :
Wait sorry, so what is this ?
Yes but what is it about ? Is it a mod available ?
https://i.imgur.com/5hjIbTY.png
https://youtu.be/jQpFdtVxaW0
Can you tell me more about this?
What is a magic link between "25" (the "Fire" ability index) and "56" (the "Fire" ability id)?
Because _FF9BMenu_ComAbil contains duplicate entries and may not link all of the 191 active abilities.
I reproduce that Command Ability list here and I add a line break before all the indices that are present in the _FF9FAbil_ComData setup :
"56" here is the index of the "25" at the start of the 6th line. If you want to change Zidane's ability, it's better to modify the "101" in this list instead of changing the index in _FF9FAbil_ComData.
If you want to modify the amount of abilities (giving 16 to Zidane instead of 8, for instance), you can't avoid computing that list again, though.
It should be easy to generate automatically.