Final Fantasy VII Remake
0 of 0

File information

Last updated

Original upload

Created by

NightFyre

Uploaded by

NightFyreTV

Virus scan

Safe to use

Tags for this mod

About this mod

Internal Mod Menu with some basic cheats and Party Stat adjustments

Permissions and credits
Mirrors
Donations
[STEAM] Final Fantasy Vii Remake Internal Menu

NOTE
This is mainly a source project. Meaning you are free to edit the source code and compile your own version using this as a base. You are free to clone the latest version by going to the github page. The download included should act as a demo so to speak. You will be able to inject an interactable menu which features a few cheats and your parties stats. I will continue to add to this project as I find more things. I just got the game yesterday and have only reached the first reactor. Below there will be an advanced usage guide which I plan to later expand upon.

RoadMap
- Items & Equipment Manager
- Pause the game w/ Menu open
- Controller Support
--------------------------------------------------------------------

REQUIREMENTS
You must launch this game w/ DirectX 11 for the hook to work. Launching w/ DirectX12 will result in errors!
- Right click "Final Fantasy VII REMAKE INTEGRADE" in your steam library
- Select properties
- General > Launch Options
- input "-d3d11" without the quotes

FEATURES
- Party Stats Manager
- Basic Cheats

SUPPORT
Feel free to join my discord server or report any issues you encounter in the github repository

CONTRIBUTING

I have no problem with people contributing to the repository. All I ask is that you follow the same programming methods that I have in place. Class pointers , structs etc. Things need to be easily accessible and neatly managed (within reason). Any and all pull requests will include a discussion regarding the reasoning behind changes. I look forward to collaborating with like minded individuals :)

INSTALL INSTRUCTIONS
- Use any x64 injector of your choice. If you do not have one, consider downloading process hacker. 
- Inject into ff7remake_.exe


------------------
I take no responsibilities for whatever happens to your pc if you mess this up. This stuff kind of assumes you have some basic knowledge in coding. If not ... feel free to watch a few youtube videos on "Making your first internal hack"

ADVANCED USER GUIDE
(this assumes you have visual studio 2019 installed)
Quick Start - [Max Strength]  Add New Toggle: 
- Clone the project
- Navigate to menu.cpp
- create a boolean at the head of the file below our includes
- in the desired "tab" create an ImGui::Toggle
- in loops create an if statement for the boolean, when its true your changes should apply

Example Max Strength ("~" is used to mark spacing in the document "menu.cpp" use CTRL+F to find the function names)
#include "~"
bool bMAXSTRENGTH = FALSE;

~
void STATCloud() {
ImGui::Toggle("MAX STRENGTH", &bMAXSTRENGTH);
}

~
void Menu::Loops() {
if (bMAXSTRENGTH)
g_GameData->Cloud->Strength = 9999;
}


PENDING UPDATES
v1.1 Change-Log
- Controller Support (Press L3 & R3 for roughly 1 second to show/hide the menu) controller input to the game is disabled during menu interaction, it is advised that you pause the game first. I am presently looking for a clean method to pause the game for the user which will be in a later update.
- New Character Stats (Limit Break, ATB & Experience)
- "MAX" buttons in Character Stats for 1 click refill (Health, Magic, Limit Break & ATB)

full list of changes