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.

atMee

Members
  • Joined

  • Last visited

  1. SKEL_Neck0 SKEL_R_Hand SKEL_L_Clavicle SKEL_L_Hand SKEL_L_Foot SKEL_R_Clavicle SKEL_Pelvis
  2. This is the Native class, If you want to take a quick look over https://github.com/Saltyq/ScriptHookRDR2DotNet/blob/master/source/scripting_v3/RDR2.Native/Native.cs also, This was already reported as a bug, and quite some time ago, Only text labels seem to work https://github.com/Saltyq/ScriptHookRDR2DotNet/issues/23
  3. It may be worth looking into the String Translator script as this script allows you to edit the Text Label strings. https://www.nexusmods.com/reddeadredemption2/mods/364 It's a bit of a workaround solution to the issue, but it's the only alternative I know.
  4. This will not work. Function.Call(Hash._UIPROMPT_SET_TEXT, prompt, Function.Call<string>(Hash._CREATE_VAR_STRING, 10, "LITERAL_STRING", t_text)); because using that native is literally no different than just passing the string it self. Function.Call(Hash._UIPROMPT_SET_TEXT, prompt, t_text); _UIPROMPT_SET_TEXT is looking for a valid text label. Which is the reason why this will work. string t_text = "WARDROBE_INSPECT_PROMPT"; Function.Call(Hash._UIPROMPT_SET_TEXT, prompt, Function.Call<string>(Hash._CREATE_VAR_STRING, 10, "LITERAL_STRING", t_text)); But this will not work string t_text = "My Custom String"; Function.Call(Hash._UIPROMPT_SET_TEXT, prompt, Function.Call<string>(Hash._CREATE_VAR_STRING, 10, "LITERAL_STRING", t_text)); If you are going to pass a literal string, Then you must make sure that the literal string matches a valid text label.
  5. _UIPROMPT_SET_TEXT uses text id/labels from the game, these are stored in the .yldb files.
  6. mbh_skinnersearch_males_01 = 0xDF4A4EAC 👍
  7. atMee commented on admin's native in CAM
    For p0. true: Transitions from current shake, to no shake immediately. false: Transitions from current shake, to no shake over a short period. (More natural feel)

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.