Sprint while blocking and aiming – Update 2.01 PL – redscript
Can sprint while blocking and aiming!
Installation
– Read the notes section of the description.
– Download and install redscript.
– Download the mod. Unzip its contents and drop it in your game’s root folder.
– Should look like this: \Cyberpunk 2077\r6\scripts\CanSprintWhileBlockingAndAiming.reds
Notes
To use the mod with the mod Sprint Fix, use the Sprint Fix variant of my mod. You then need to open Sprint Fix’s .reds file with Notepad and find these lines:
isAiming = scriptInterface.localBlackboard.GetInt(GetAllBlackboardDefs().PlayerStateMachine.UpperBody) == 6;
if isAiming {
return false;
};
};
and change “return false;” to “return true;”, like this:
isAiming = scriptInterface.localBlackboard.GetInt(GetAllBlackboardDefs().PlayerStateMachine.UpperBody) == 6;
if isAiming {
return true;
};
};