Force first person on foot

Red Dead Redemption 2 |

Force first person on foot

Props to LMS over at Mod RDR Discord for helping look into ways to manipulate the first person camera.

I created this simple mod because I like to travel in third person while on my horse, but prefer first person on foot. I’m lazy and don’t like to have to press the view toggle button every time I change states.

Instructions:
Requires ScriptHookRDR2DotNet: https://www.rdr2mod.com/script-hook-rdr2/

Place RedDead2HorseCameraSwap.dll in your “path to Red Dead Redemption 2″/scripts directory.
If the “scripts” directory does not exist, create it.
If you’re curious, here are the entire contents of the mod so you can do it yourself if you prefer.

using System;
using RDR2;
using RDR2.Native;

namespace RedDead2HorseCameraSwap
{
public class Main : Script
{
public Main()
{
Interval = 1;
Tick += onTick;
}

private void onTick( object sender, EventArgs e )
{
var player = Game.Player.Character;
if ( player.IsOnFoot )
{
//# _FORCE_FIRST_PERSON_CAM_THIS_FRAME: https://www.mod-rdr.com/nativedb/index/cam/_0x90da5ba5c2635416/
Function.Call( Hash._0x90DA5BA5C2635416 );
}
}
}
}


Credits: XaeroDegreaz
1 Star2 Stars3 Stars4 Stars5 Stars (3 votes, average: 5.00 out of 5)
Loading...

This content was uploaded by website visitors. If you notice any mistake, please let us know.


Have you ever heard about the Red Dead Redemption 2 Mods? It’s a great additional file, which provides extra features for your game. Each Red Dead Redemption 2 Mod is specific and has unique options, so you have a lot of possible variations. However, the best thing is to take a look yourself – scroll through our RDR2 Mods and find the needed file, which will give you a great boost! With Red Dead Redemption 2 Mods you can make your RDR 2 game even more special and customized. Why not adding unseen features to your favorite Western-themed action game? Get to see the latest and the best RDR2 Mods and pick the right one for yourself. Create your own edition of this brand new game and explore the unseen horizons. The release of the game is so long-waited that fans are getting even too excited. No wonder why – RDR 2 is predicted to be the biggest launch in gaming world. Upgraded with mods, the game can become even more fascinating, so don’t miss the chance. It’s now or never, so step forward right now!



Useful Information:
- How to install Red Dead Redemption 2 Mods
- How to Create Red Dead Redemption 2 Mods
- About Red Dead Redemption 2 Game
- Download Red Dead Redemption 2 Game
- Red Dead Redemption 2 Release Date
- Red Dead Redemption 2 System Requirement

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *