Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

Help understanding Names Array Structure of FFVII Remake (UE4)

Featured Replies

  • Author
  • Localization

cafo678, posted Thu Dec 30, 2021 1:17 am (68550)


Hey guys, just here to ask for some help, I'm trying to dump Names and Objects of FFVII Remake but the Structure of the names is all messed up, there are too few bytes between names and I can't find the indexes, please note that this is a cracked version, but that should not be a problem right?

Image

Code:
/**
 * A global name, as stored in the global name table.
 */
struct FNameEntry
{
private:
   /** Index of name in hash. */
   NAME_INDEX      Index;
 
public:
   /** Pointer to the next entry in this hash bin's linked list. */
   FNameEntry*      HashNext;
 
private:
   /** Name, variable-sized - note that AllocateNameEntry only allocates memory as needed. */
   union
   {
      ANSICHAR   AnsiName[NAME_SIZE];
      WIDECHAR   WideName[NAME_SIZE];
   };


In fact a game in UE4.18 built by me:

Image

OK sorry, even if the game was made in UE4.18 apparently it uses some stuff from > 4.23 -- You can delete the thread, and sorry again
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.