Cyberpunk 2077
0 of 0

File information

Last updated

Original upload

Created by

kain

Uploaded by

kain067

Virus scan

Safe to use

Tags for this mod

About this mod

Simple AutoHotkey toggle script to stop the camera from auto-centering (automatically facing forwards) while driving.

Requirements
Permissions and credits
This is not actually a mod per se, but an AutoHotkey script to disable the camera from automatically facing forwards while you drive if you don't move the mouse for a few seconds. 

There are a few install choices for this "mod":
- Download and run the EXE version while you are playing
- Download the script and load it with AutoHotkey (download and install AutoHotkey if you haven't already, then double-click the downloaded .ahk file to load it before or during gameplay)
- Simply copy and paste the script at the bottom of this description into your own running AutoHotkey script

Once you are in the game and get in a vehicle, simply press the middle mouse button to begin the script that slightly moves your camera up and down every half-second. It won't be very noticeable as you drive, and it will prevent the camera from auto-centering. Then when you exit the car, press middle mouse again to stop the camera movement. If you download or paste the script, you can replace "MButton" in the text with any other button or key you prefer.

Update 1.1: Now works for first-person driving, too. (the slight camera movement is more noticeable while driving in first person)



#IfWinActive Cyberpunk 2077 (C) 2020 by CD Projekt RED
  Pause On
    Loop 
    {
    MouseMove, 0, 1,, R
    Sleep, 400
    MouseMove, 0, -1,, R
    Sleep, 400
    }
    MButton::Pause
Return