Author Topic: [FF7PC-98/Steam] New Threat Mod (v2.0.99998)  (Read 5572779 times)

mamfmage

  • *
  • Posts: 5
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11875 on: 2025-01-21 16:09:30 »
hi there,

 similar to how it's been done in this mod, I would like to change some of the materia properties. I know that there is MateriaKeeper/GuardScorpion for changing whole groups of materia types, but I would want to modify each separately. Is there some FAQ/tutorial on how I could do that, either via hexEdit or code snippets with specific info/address (like the raw byte arrays in MateriaKeeper)?

thank you

javisanchez1234567

  • *
  • Posts: 32
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11876 on: 2025-01-21 21:20:20 »
Hi Sega, I would love to play your mod with an edition: limiting inventory. I would like to set the maximum number of each item to not be 99. I still don't know if it is 10, 30 or 50, to give importance to object and MP management (by having fewer potions). Would you know what to change in HxH?

Sega Chief

  • Moderator
  • *
  • Posts: 4108
  • These guys is sick
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11877 on: 2025-01-22 12:59:04 »
hi there,

 similar to how it's been done in this mod, I would like to change some of the materia properties. I know that there is MateriaKeeper/GuardScorpion for changing whole groups of materia types, but I would want to modify each separately. Is there some FAQ/tutorial on how I could do that, either via hexEdit or code snippets with specific info/address (like the raw byte arrays in MateriaKeeper)?

thank you

This should be able to do it: https://forums.qhimm.com/index.php?topic=18571.0

I think you'll need to output your changes as a hext file; hard-patching the .exe is no longer an option under 7th as it checks for a default .exe. You'll then need to unpack the NT IRO using 7th so that you can copy-paste the hext file's contents and overwrite my materia equip changes with yours. The section in my hext file is labelled:




Hi Sega, I would love to play your mod with an edition: limiting inventory. I would like to set the maximum number of each item to not be 99. I still don't know if it is 10, 30 or 50, to give importance to object and MP management (by having fewer potions). Would you know what to change in HxH?

I wouldn't know how to do that, I'm afraid, but it sounds like it should be possible. I'll pitch the idea to PostScriptThree; he's really good with this stuff.

mamfmage

  • *
  • Posts: 5
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11878 on: 2025-01-22 16:37:17 »
This should be able to do it: https://forums.qhimm.com/index.php?topic=18571.0

I think you'll need to output your changes as a hext file; hard-patching the .exe is no longer an option under 7th as it checks for a default .exe.

1.) I was able to manually patch the ff7_en.exe with the MateriaKeeper v1.2 code cloned from your github. The patched FFNx runs just fine outside of 7th (via Steam). Now all the level 1 green materia add +10 instead +1 magic.

2.) My actual goal was to understand how I can patch the .exe so that I have, e.g. fire with +5 str, lightning +10 dex, ice +15 magic, shiva + 50 magic, ifrit +50 str etc.

thanks in advance


postscriptthree

  • *
  • Posts: 8
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11879 on: 2025-01-22 20:23:38 »
Hi Sega, I would love to play your mod with an edition: limiting inventory. I would like to set the maximum number of each item to not be 99. I still don't know if it is 10, 30 or 50, to give importance to object and MP management (by having fewer potions). Would you know what to change in HxH?

The item limit is hardcoded in a bunch of different places, so you need to change them all. I made a hext file that sets the limit to 5. If you want a different number, just change the 05 to something else. I think this covers all ways to get items, but I could have missed some.

Code: [Select]
#Make the item limit 5 instead of 99

#Item pickup limit
006CC081 = 05
006CC087 = 05

#Shop limit
0071A7B3 = 05

#W-item glitch limit
006DB6AC = 05
006DB6C2 = 05

#Steal/morph limit
00433243 = 05

#Item drop limit
005C85BC = 05
005C85C2 = 05

Sega Chief

  • Moderator
  • *
  • Posts: 4108
  • These guys is sick
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11880 on: 2025-01-24 18:06:27 »
1.) I was able to manually patch the ff7_en.exe with the MateriaKeeper v1.2 code cloned from your github. The patched FFNx runs just fine outside of 7th (via Steam). Now all the level 1 green materia add +10 instead +1 magic.

2.) My actual goal was to understand how I can patch the .exe so that I have, e.g. fire with +5 str, lightning +10 dex, ice +15 magic, shiva + 50 magic, ifrit +50 str etc.

thanks in advance



Ah I see; Materia doesn't have individual equip effects, they instead use a preset. In the tool, you'll see a list of 'tiers' on the right; these are the possible equip effects that are available (in vanilla game). To change the tier used by each Materia, you need a tool like Wall Market (I think the new Scarlet tool can also do it). But there are only about 15 tiers or so, which means you can't assign an individual equip effect to each materia without additional modding.

javisanchez1234567

  • *
  • Posts: 32
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11881 on: 2025-01-24 20:28:27 »
The item limit is hardcoded in a bunch of different places, so you need to change them all. I made a hext file that sets the limit to 5. If you want a different number, just change the 05 to something else. I think this covers all ways to get items, but I could have missed some.

Code: [Select]
#Make the item limit 5 instead of 99

#Item pickup limit
006CC081 = 05
006CC087 = 05

#Shop limit
0071A7B3 = 05

#W-item glitch limit
006DB6AC = 05
006DB6C2 = 05

#Steal/morph limit
00433243 = 05

#Item drop limit
005C85BC = 05
005C85C2 = 05

Hello, thank you very much but I have a question. I think that data is for the 7thHeaven .exe because my .exe only goes up to 0061xxxx. I don't use 7th because I like to manually edit some things in the exe like the limits and 7th changes the exe for me, so I chose to use the .iro to unzip, install everything manually and make whatever changes I want to the exe that way. So would these changes be possible in the base Steam .exe?

mav

  • *
  • Posts: 262
  • The Sauce team
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11882 on: 2025-01-25 05:23:27 »
Hello, thank you very much but I have a question. I think that data is for the 7thHeaven .exe because my .exe only goes up to 0061xxxx. I don't use 7th because I like to manually edit some things in the exe like the limits and 7th changes the exe for me, so I chose to use the .iro to unzip, install everything manually and make whatever changes I want to the exe that way. So would these changes be possible in the base Steam .exe?

No, these are for the Steam .exe but postscriptthree used the hext format for them which use the addresses as they're laid out in memory. If you want to patch your exe directly in a hex editor just subtract 0x400C00 from these values. For example the first byte to change in the item pickup limit is at 0x2CB481 (originally it's 0x63 which is 99 in decimal).

javisanchez1234567

  • *
  • Posts: 32
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11883 on: 2025-01-25 20:47:24 »
No, these are for the Steam .exe but postscriptthree used the hext format for them which use the addresses as they're laid out in memory. If you want to patch your exe directly in a hex editor just subtract 0x400C00 from these values. For example the first byte to change in the item pickup limit is at 0x2CB481 (originally it's 0x63 which is 99 in decimal).

Thank you so much. It works perfectly. Several times I had seen some things editable with HxH and since it came from number 007xxxxx I thought it was referring to 7thHeaven and that I couldn't. Now I know how to do it. Thanks again to you and postscriptthree.

PS: While we're at it, would you know how to make the critical and weakness deal 150% damage instead of 200%? It's a good way to make enemies more tanky without increasing health.

mav

  • *
  • Posts: 262
  • The Sauce team
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11884 on: 2025-01-25 20:55:51 »
The code to apply critical damage is shared for both allies and enemies, it happens at 0x5de697:

Code: [Select]
        005de697 8b 55 f4        MOV        EDX,dword ptr [EBP + damage]
        005de69a d1 e2           SHL        EDX,0x1
        005de69c 89 55 f4        MOV        dword ptr [EBP + damage],EDX

Changing that to do 150% would require a lot of rewriting because as far as I'm aware you can't multiply by 1.5x in a simple instruction like binary shift left.

javisanchez1234567

  • *
  • Posts: 32
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11885 on: 2025-01-25 22:36:19 »
The code to apply critical damage is shared for both allies and enemies, it happens at 0x5de697:

Code: [Select]
        005de697 8b 55 f4        MOV        EDX,dword ptr [EBP + damage]
        005de69a d1 e2           SHL        EDX,0x1
        005de69c 89 55 f4        MOV        dword ptr [EBP + damage],EDX

Changing that to do 150% would require a lot of rewriting because as far as I'm aware you can't multiply by 1.5x in a simple instruction like binary shift left.

I understand. Also, FF VII only works with multiples of x2 or between 2. I once tried to change the experience to the substitute members at 90% and the game crashed when winning a battle. It has to be 50% or 100%. I imagine this is the same. 100%, 200%, 300%, etc... Also, thank you very much for the info. I marvel at the knowledge some of you have about this. If it weren't for this forum, in that program, I would only see many numbers without knowing what any of them do.

Sega Chief

  • Moderator
  • *
  • Posts: 4108
  • These guys is sick
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11886 on: 2025-01-26 16:03:24 »
Thank you so much. It works perfectly. Several times I had seen some things editable with HxH and since it came from number 007xxxxx I thought it was referring to 7thHeaven and that I couldn't. Now I know how to do it. Thanks again to you and postscriptthree.

PS: While we're at it, would you know how to make the critical and weakness deal 150% damage instead of 200%? It's a good way to make enemies more tanky without increasing health.

NT actually does this and has crit damage set at +50% instead of +100%; as Mav says, it needed some rewriting so I jump the function to an unused section and rewrite it there:

#Critical Hit Modifier: +50% Damage instead of +100%
5DE697 = E9 96 56 33 00
913D32 = 8B 55 F4 6B D2 03 D1 FA 89 55 F4 8B 45 F4 E9 57 A9 CC FF

These are the addresses when the game isn't running (for hard-patching rather than hext):
#1DDA97
#512732

javisanchez1234567

  • *
  • Posts: 32
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11887 on: 2025-01-26 17:36:12 »
NT actually does this and has crit damage set at +50% instead of +100%; as Mav says, it needed some rewriting so I jump the function to an unused section and rewrite it there:

#Critical Hit Modifier: +50% Damage instead of +100%
5DE697 = E9 96 56 33 00
913D32 = 8B 55 F4 6B D2 03 D1 FA 89 55 F4 8B 45 F4 E9 57 A9 CC FF

These are the addresses when the game isn't running (for hard-patching rather than hext):
#1DDA97
#512732

Brilliant. I think that feature was missing the last time I played it (it was version 1.5). Or I don't remember. I like this feature so that the luck factor counts a little less. FF IV's 20% is exaggerated and makes the crit unnoticeable, I think the ideal balance is 50%.

I love FF VII but I like to give it a few years of rest between runs.

And can you do the same with elemental weaknesses?

mamfmage

  • *
  • Posts: 5
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11888 on: 2025-01-28 06:39:08 »
Ah I see; Materia doesn't have individual equip effects, they instead use a preset. In the tool, you'll see a list of 'tiers' on the right; these are the possible equip effects that are available (in vanilla game). To change the tier used by each Materia, you need a tool like Wall Market (I think the new Scarlet tool can also do it). But there are only about 15 tiers or so, which means you can't assign an individual equip effect to each materia without additional modding.

I'm curious about the 'additional modding'. How were you able to do it? Is there a public spec/FAQ on the components/modules containing materia info and dependencies?

Update: I've got Scarlet to work and (in combination with MateriaKeeper) some dedicated changes can be made. Nevertheless, it would still be nice to know how more tiers of stat bonuses could be added.

Update #2: Ok, now that I was able to get WallMarket running, I see that the materia tab has more than 16 possible 'Equip Effects' (going up to the offset FF), the ones after position 16 being empty. Since I couldn't get hold of the source code for WallMarket, I will have to speculate and hope, that the memory offset after pos 16 is not being used by other parts of the kernel and I can simply add some more materia modifier tiers (?)
« Last Edit: 2025-01-29 19:02:02 by mamfmage »

AceRimmer

  • *
  • Posts: 1
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11889 on: 2025-02-05 20:30:57 »
Hi, these are quotes from page 465:

Quote
    When I tried to run the game from 7th Heaven just now, I get an error that says 60 fps animations for New Threat 2.0 requires you to activate New Threat 2.0 as well, but I have New Threat Combat Only enabled already, so it seems that for some reason the 60 fps mod won't work with Combat Only. Any ideas?


Quote
Unsure, it's probably an ID thing and expecting the regular version rather than the variant. I'll look into it.

I'm having the same problem.  Just trying to play w/ "New Threat 2.0 Combat Only" and 60fps mod, but 7th Heaven won't allow the game to launch.  Just like the other person, it says "New Threat 2.0" is needed.  My goal is to play w/ Combat Only while using the new Shinra Archaeology translation. 

While 60fps isn't necessary, it would be wonderful to play the game w/ it along w/ Combat Only and new trans.  Anything you can do to help?  Thanks!

Sega Chief

  • Moderator
  • *
  • Posts: 4108
  • These guys is sick
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11890 on: 2025-02-11 14:53:46 »
Brilliant. I think that feature was missing the last time I played it (it was version 1.5). Or I don't remember. I like this feature so that the luck factor counts a little less. FF IV's 20% is exaggerated and makes the crit unnoticeable, I think the ideal balance is 50%.

I love FF VII but I like to give it a few years of rest between runs.

And can you do the same with elemental weaknesses?

#Elemental Damage Modifier: +50% Damage instead of 100%
5DB5E4 = E9 76 87 33 00 90 90
913D5F = 6B D2 03 D1 FA A1 0C CE 99 00 E9 7D 78 CC FF
#1DA9E4 = E9 76 87 33 00 90 90
#51275F = 6B D2 03 D1 FA A1 0C CE 99 00 E9 7D 78 CC FF

The lines starting with # are dormant addresses (game not running, for hard-patching an .exe) included just for reference. 7th would use the first two lines.


I'm curious about the 'additional modding'. How were you able to do it? Is there a public spec/FAQ on the components/modules containing materia info and dependencies?

Update: I've got Scarlet to work and (in combination with MateriaKeeper) some dedicated changes can be made. Nevertheless, it would still be nice to know how more tiers of stat bonuses could be added.

Update #2: Ok, now that I was able to get WallMarket running, I see that the materia tab has more than 16 possible 'Equip Effects' (going up to the offset FF), the ones after position 16 being empty. Since I couldn't get hold of the source code for WallMarket, I will have to speculate and hope, that the memory offset after pos 16 is not being used by other parts of the kernel and I can simply add some more materia modifier tiers (?)

I just meant like moving it somewhere else so that there's room to make additional equip effects. I think going past the 15h you're likely to run into data that's being used, but I can't remember I'm afraid. If it isn't being used then you could edit it to make additional equip effects.


Hi, these are quotes from page 465:


I'm having the same problem.  Just trying to play w/ "New Threat 2.0 Combat Only" and 60fps mod, but 7th Heaven won't allow the game to launch.  Just like the other person, it says "New Threat 2.0" is needed.  My goal is to play w/ Combat Only while using the new Shinra Archaeology translation. 

While 60fps isn't necessary, it would be wonderful to play the game w/ it along w/ Combat Only and new trans.  Anything you can do to help?  Thanks!

I'll DL the IRO and make a variant that checks for the CO ID instead as a temporary measure. I'll update this post in a bit with the link.

Edit: https://mega.nz/file/DtkQiQCb#8zSRk6Z5jgMVSIAk4XZbFf_qDYSzYegOKjWCT5umdQA
That's the 60fps NT compat IRO but I changed the ID needed to the NT 2.0 Combat Only IRO instead.
« Last Edit: 2025-02-11 15:16:35 by Sega Chief »

Kirgo

  • *
  • Posts: 3
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99995)
« Reply #11891 on: 2025-02-12 22:42:37 »
Hi,
quick question regarding New Threat 2.0 Combat Only compatibility with Shinra Archeology Cut Vanilla (retranslation only).
The stats of normal enemies seem to be in order but I noticed the Scorpion still being his vanilla self.
Is this a common problem?

javisanchez1234567

  • *
  • Posts: 32
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99994)
« Reply #11892 on: 2025-02-13 14:04:46 »
#Elemental Damage Modifier: +50% Damage instead of 100%
5DB5E4 = E9 76 87 33 00 90 90
913D5F = 6B D2 03 D1 FA A1 0C CE 99 00 E9 7D 78 CC FF
#1DA9E4 = E9 76 87 33 00 90 90
#51275F = 6B D2 03 D1 FA A1 0C CE 99 00 E9 7D 78 CC FF

The lines starting with # are dormant addresses (game not running, for hard-patching an .exe) included just for reference. 7th would use the first two lines.


I just meant like moving it somewhere else so that there's room to make additional equip effects. I think going past the 15h you're likely to run into data that's being used, but I can't remember I'm afraid. If it isn't being used then you could edit it to make additional equip effects.


I'll DL the IRO and make a variant that checks for the CO ID instead as a temporary measure. I'll update this post in a bit with the link.

Edit: https://mega.nz/file/DtkQiQCb#8zSRk6Z5jgMVSIAk4XZbFf_qDYSzYegOKjWCT5umdQA
That's the 60fps NT compat IRO but I changed the ID needed to the NT 2.0 Combat Only IRO instead.


Thanks Sega, you are great. How can you know all this? Is there any program or any way to know what to play to be able to edit so many things?

With all this I'm ready for another run of FF VII, but I have one last question.

FF VII on Steam has the important bug of deleting your saves, which happened to me the first time I played on Steam and looking online you see that it is common. When I played it with NT I left backups after each session, but I never had to use them. Have you managed to solve the bug or should I continue with backup copies, just in case?

Sega Chief

  • Moderator
  • *
  • Posts: 4108
  • These guys is sick
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99995)
« Reply #11893 on: 2025-02-13 15:56:15 »
Hi,
quick question regarding New Threat 2.0 Combat Only compatibility with Shinra Archeology Cut Vanilla (retranslation only).
The stats of normal enemies seem to be in order but I noticed the Scorpion still being his vanilla self.
Is this a common problem?

In combat only, there are no field edits so the scorpion isn't able to reappear later so he's been put back to be more in line with his vanilla self. He should have a few extra attacks like W-Rifle and Shock but these aren't guaranteed to be used.



Thanks Sega, you are great. How can you know all this? Is there any program or any way to know what to play to be able to edit so many things?

With all this I'm ready for another run of FF VII, but I have one last question.

FF VII on Steam has the important bug of deleting your saves, which happened to me the first time I played on Steam and looking online you see that it is common. When I played it with NT I left backups after each session, but I never had to use them. Have you managed to solve the bug or should I continue with backup copies, just in case?

On Steam version, it seems to be something to do with cloud saves where they can sometimes disappear if the save files aren't stored locally. I'm unsure what causes that but it may be related to the below.

The other possible cause is that there's a checksum that Steam saves have where the launcher will check save files when it is opened and delete any that have an incorrect checksum (for instance, if someone sent you their save file and you put it into the steam save folder and then launched the game, the launcher would delete the foreign save file). This used to happen when editing save files as well but I think the save editor can bypass it now. The workaround is to move a save file into the folder when the launcher is running, then save the game to get it a correct checksum.

javisanchez1234567

  • *
  • Posts: 32
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99995)
« Reply #11894 on: 2025-02-13 16:24:17 »
In combat only, there are no field edits so the scorpion isn't able to reappear later so he's been put back to be more in line with his vanilla self. He should have a few extra attacks like W-Rifle and Shock but these aren't guaranteed to be used.


On Steam version, it seems to be something to do with cloud saves where they can sometimes disappear if the save files aren't stored locally. I'm unsure what causes that but it may be related to the below.

The other possible cause is that there's a checksum that Steam saves have where the launcher will check save files when it is opened and delete any that have an incorrect checksum (for instance, if someone sent you their save file and you put it into the steam save folder and then launched the game, the launcher would delete the foreign save file). This used to happen when editing save files as well but I think the save editor can bypass it now. The workaround is to move a save file into the folder when the launcher is running, then save the game to get it a correct checksum.

Thank you. I'll try it, but I still don't trust FF VII, so I'll make backup copies.

Kirgo

  • *
  • Posts: 3
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99995)
« Reply #11895 on: 2025-02-13 21:24:16 »
In combat only, there are no field edits so the scorpion isn't able to reappear later so he's been put back to be more in line with his vanilla self. He should have a few extra attacks like W-Rifle and Shock but these aren't guaranteed to be used.
He did try to use a skill but couldn't since he didn't have enough mp(even though he didn't do anything yet besides use scan once) and he's dead after maybe 3 turns, since the party does so much more damage than usual thanks to the revised stats and the Scorpion only having 800HP.
« Last Edit: 2025-02-13 21:36:26 by Kirgo »

circle

  • *
  • Posts: 17
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99995)
« Reply #11896 on: 2025-02-14 15:17:54 »
Hi Sega Chief, thanks for all your work on this excellent mod!

Unfortunately I've run into a problem that is stopping me from progressing in the game. I'm playing 2.0 Type B, and still in Midgar near the beginning of the game. I returned to Sector 7 through the sewers/train graveyard, and I have to talk to Marlene. She says to follow her and runs off to the side, but then nothing happens. Her running animation continues indefinitely (though she isn't moving), Cloud is locked and can't move, and the game is essentially frozen.

I've tried this three times and the problem happened each time. The first time was in normal play, the second time I turned off all mods except New Threat and for the third time I uninstalled New Threat and reinstalled it.

Any ideas what I can do to get past this part?

Sega Chief

  • Moderator
  • *
  • Posts: 4108
  • These guys is sick
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99995)
« Reply #11897 on: 2025-02-15 12:46:11 »
He did try to use a skill but couldn't since he didn't have enough mp(even though he didn't do anything yet besides use scan once) and he's dead after maybe 3 turns, since the party does so much more damage than usual thanks to the revised stats and the Scorpion only having 800HP.

Ah it seems Shock costs 4MP but Guard Scorpion has 0MP; I'll fix that next time I update CO and I'll give it more appropriate HP/Stats.

Hi Sega Chief, thanks for all your work on this excellent mod!

Unfortunately I've run into a problem that is stopping me from progressing in the game. I'm playing 2.0 Type B, and still in Midgar near the beginning of the game. I returned to Sector 7 through the sewers/train graveyard, and I have to talk to Marlene. She says to follow her and runs off to the side, but then nothing happens. Her running animation continues indefinitely (though she isn't moving), Cloud is locked and can't move, and the game is essentially frozen.

I've tried this three times and the problem happened each time. The first time was in normal play, the second time I turned off all mods except New Threat and for the third time I uninstalled New Threat and reinstalled it.

Any ideas what I can do to get past this part?

I'll take a look at it and add a countermeasure or something.

Edit: Have updated the mod, I removed Marlene's movement in that part so she won't get stuck anymore.
« Last Edit: 2025-02-15 15:58:50 by Sega Chief »

Delitta

  • *
  • Posts: 24
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99998)
« Reply #11898 on: 2025-02-15 17:50:06 »
Hello your chiefiness
So long time returner I wanted to ask you if you would still have the files or know where to find of 1.4___   I wanted to reexperience  actually maybe finish (I left like 3 super bosses left when my laptop brokedown) you made some changes in 1.5 specifically on the  Innates and I remember beating some bosses only bcuz I worked around those innates, like Cloud who had his HP and MP recovered at some point (so I could go all out twice) and barret now is also different, etc.

Is there anyway to access these 1.4 files?
I also wanted my brother to play it just the same way (Ive talked about the mod to him for years)


« Last Edit: 2025-02-15 20:09:21 by Delitta »

circle

  • *
  • Posts: 17
    • View Profile
Re: [FF7PC-98/Steam] New Threat Mod (v2.0.99995)
« Reply #11899 on: 2025-02-16 01:54:16 »
Ah it seems Shock costs 4MP but Guard Scorpion has 0MP; I'll fix that next time I update CO and I'll give it more appropriate HP/Stats.

I'll take a look at it and add a countermeasure or something.

Edit: Have updated the mod, I removed Marlene's movement in that part so she won't get stuck anymore.

Thanks so much for this quick fix! I just tested it and it worked like you said