Cyberpunk 2077
0 of 0

File information

Last updated

Original upload

Created by

yakuzadeso

Uploaded by

yakuzadeso

Virus scan

Safe to use

Tags for this mod

About this mod

Can sprint while blocking and aiming!

Requirements
Permissions and credits
Donations
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





Check out my mods

All of my mods for Cyberpunk


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;
    };
  };