Jump to content
View in the app

A better way to browse. Learn more.

RDR2Mods.com

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.

1 Screenshot

Removes the annoying VRAM message ingame.

 

If there is a virus detection on this software, it is a false positive. Refer to your antivirus documentation for information on how to exclude the file.

 

Code (Requires minhook and a pattern scanner to work):

static const char* (*g_origGetText)(void* theText, int a2, uint32_t* hash, int* a4);

static const char* GetText(void* theText, int a2, uint32_t* hash, int* a4)
{
	if (*hash == 0xA3774AB6) {
		return "";
	}

	return g_origGetText(theText, a2, hash, a4);
}

//Put this into the initalization code. CreateHookAndNotifyAnyError is MH_CreateHook but is a wrapper that alerts the user with a message box if
//something went wrong.
CreateHookAndNotifyAnyError(hook::get_pattern("48 81 C1 D0 00 00 00 E8 ? ? ? ? 48 8B CE 83 FB FF 74 ? 44 8B 44 24 50", -57), GetText, (void**)&g_origGetText)

 

User Feedback

Recommended Comments

Troll96

Members

Is there a ReadMe that tell me what should i do. Should i put this in my main game fold?

 

Thanks in advance!!

WesternSpace

Recognized Creator Author

16 hours ago, Troll96 said:

Is there a ReadMe that tell me what should i do. Should i put this in my main game fold?

 

Thanks in advance!!

@Troll96 Yes, put it in the main game folder after extracting the file from the .zip.

Create an account or sign in to comment

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.