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
I used memoria to edit my card collection, to better my chances of winning the Treno Tetra Master Tournament. Now, every time I try to load Tetra Master in the game, including the Tournament, the game freezes on the black loading screen. Everything else plays fine, but I can't continue the game now.
Next, I verified game cache integrity, and the result is the same. The Tetra Master save data is the only tiny bit that was edited, so I thought if I used Memoria again to edit the data back to the way it was before I changed it, then Tetra Master would be able to load. It didn't help.
Is there anything I can do? Since the save file is perfectly clean other than that tiny bit of corrupted Tetra Master data, I feel like I should be able to salvage my save somehow and continue the game, even if it means editing the save so that I load into it after the tournament, and just never play Tetra Master on that file, I'd be ok with that.
-_- yes. is why i said @Albeoris since he is involved in this thread, and they are working on compatibility of the two programs. also, my game was first edited with hades workshop the first time, although i doubt that my problem has anything to do with a clashing of the two programs, since the data edited was completely unrelated. but just in case i posted here on the off chance Albeoris or Tirlitit might think so. If you knew anything you wouldn't have posted such a patronizing post. I'm not stupid; know your place.
Unfortunatly, I can't do anything for you, as I have no insights on the save files :/
You can try to ask gjoerulv but Memoria is not his main priority, so you may be lucky but you may as well not.
Out of curiosity, does the game bugs when you go in the cards menu as well?
I wonder, though. Aside from restoring the integrity of the save file, if I could fix the problem by advancing the saved state of my game. Allowing me to load into my game after the tournament. Then I could proceed like normal without incident, so long as I just dont play Tetra Master, which isnt a major concer for me lol.
I am very new to modding FF IX and I'm not sure how to open the Hades Workshop.
I have downloaded the files, extracted them and put them in the C:\Steam\steamapps\common\FINAL FANTASY IX. (unmodded folder)
After that, I tried running the FF9_Launcher.exe. Then, I hit PLAY on the launcher. This message pops up: http://imgur.com/a/ssDgj
I just click OK and the launcher re-appears. I click PLAY again. But after that, the game just keeps hanging on the FINAL FANTASY IX logo and nothing seems to happen.
I am sorry for the simple question, but how do I should I open the Hades Workshop?
Thank you in advance
Kind regards
Sacralletius
You open hw.exe and then go to load and select your ffix launcher.exe.
Once I downloaded the correct version and followed your steps, it worked like a charm.
Thanks for the help.
Kind regards
Sacralletius
Quick question: Is it possible to use the Hades Workshop to change "Auto-Regen" to "Auto-Protect" and "Auto-Life" to "Auto-Shell"? If yes, how can I do this?
Here is what it looks like in C#
https://www.dropbox.com/s/b50cj0gruiytcu3/Source_AutoAbilities.cs?dl=0
What you need to do is changing the few things in the "if" block corresponding to the supporting ability that you want to change. Mainly, you need to replace the number by the one corresponding to the new status you want, but there may be some few additional requirements depending on that status.
For auto-shell and auto-protect, it seems that you need to add both the flag to the "permanent status" and "current status" fields, otherwise it doesn't work properly. For some others, you need to call an SPS method in order to display the corresponding icon in the battle.
In CIL Code (what you can see and edit in Hades Workshop), the "Auto-Life" part looks like this:
NOTES:
1) It might happen that the 'ldfld' and 'stfld' 0x... identifiers are different in your version (usually because you wouldn't have the latest Steam patch). Don't copy/paste the above code if that's the case, but write one with your 0x... identifiers instead.
2) You can add several statuses without problem. Using the status 12582912, for instance, will make an "Auto-Mother". In such case, you still need to add the special requirements of each statuses.
3) When editing the CIL code, the targets of the different 'brfalse' (and the other 'br' opcodes) outside of the edited part of the code are automatically updated. However, the target position of 'brfalse' must be carefully verified, even if you copy/paste the code above. It must points to the position right after the end of the corresponding C# "if" block.
Good luck.