Cyberpunk 2077

File information

Last updated

Original upload

Created by

Bonaniki

Uploaded by

Bonaniki

Virus scan

Safe to use

1048 comments

  1. Bonaniki
    Bonaniki
    • premium
    • 105 kudos
    Locked
    Sticky
    READ THIS POST OR YOU'll DIE IN 7 DAYS

    If you encounter a bug, please fill out the bug report form.
    Provide a detailed description on how to reproduce the bug.
    Attach log files located here:
    "Cyberpunk 2077\bin\x64\plugins\cyber_engine_tweaks\mods\ImmersiveFirstPerson\ImmersiveFirstPerson.log"
    "Cyberpunk 2077\bin\x64\plugins\cyber_engine_tweaks\scripting.log"

    If logs are too long, publish them on pastebin.

    Keep in mind, every time the game is updated, it takes a couple hours for CET to update as well.
  2. Bonaniki
    Bonaniki
    • premium
    • 105 kudos
    Locked
    Sticky
    Regarding the replacement of "options.json" file

    The new mod version requires to modify one of the game's internal configuration files. If there are no other mods that modify it, then it should be perfectly fine. This does not reset or modify your game settings and keybindings, those are somewhere else.
    This modification lowers the minimum allowed mouse sensitivity from 1 to 0. This is necessary for the FreeLook to work correctly, otherwise the character will slowly move with the camera. If you don't use FreeLook, feel free to not replace the options.json file.
    I'll be looking into ways to work around the issue, but for now the file will be replaced.

    You can also update the file manually, if you don't want to replace it. To do this open r6/config/settings/platform/pc/options.json file, find "FPP_MouseX" option and look for "min_value": 1.0 line, change 1.0 to 0.0. Do the same for "FPP_MouseY" and you're done.
    Here's an example
  3. Bonaniki
    Bonaniki
    • premium
    • 105 kudos
    Locked
    Sticky
    Immersive First Person only changes the first person camera. Invisible body, wrong body models, missing on-foot radio, and any other issues not related to camera — ARE NOT RELATED TO THIS MOD. Please, stop reporting it.
  4. BlueGunk
    BlueGunk
    • premium
    • 106 kudos
    Brilliant mod! Thank you!
  5. inchent1212
    inchent1212
    • member
    • 0 kudos
    Is there a way to keep it on during combat
  6. PatrickCody02
    PatrickCody02
    • member
    • 0 kudos
    Does this work with 2.1+?
  7. TheOuterGod
    TheOuterGod
    • member
    • 0 kudos
    The first person suddenly stopped working. The free movement still works and CET recognizes the mod, but I know I did not update the game, I've done no changes, but suddenly, poof. Heck, I don't know how I would even recreate this bug, I haven't done anything!
    1. AccidentalAwesomeness
      AccidentalAwesomeness
      • member
      • 1 kudos
      If you haven't already, restart your computer. I've found out that sometimes if a mod breaks suddenly without any outside change, it's because of something with the computer itself running for too long.
  8. ThreeBeggars
    ThreeBeggars
    • member
    • 0 kudos
    Mod works great! Correct body model/clothing etc. and never needed to edit any files thankfully as I'm not using freelook. Just a question regarding the model being headless - would I be correct in assuming a reason for this might be that it would mess with the camera to have the live head? Or is there no live head available in the native game for this reason?

    Just curious :)

    Thanks again! Keep up the great work.
  9. Elrond321
    Elrond321
    • member
    • 0 kudos
    how do i get free look to work on controller, i cant bind controller buttons and binding on the keyboard just switches to M&k mapping?
  10. teratism
    teratism
    • member
    • 3 kudos
    Mod is causing clothes to disappear. Very annoying.
    1. Bonaniki
      Bonaniki
      • premium
      • 105 kudos
      it does not
    2. Stormie
      Stormie
      • premium
      • 43 kudos
      Mod is causing clothes to disappear. Very annoying.

      This mod doesn't touch inventory or wardrobe. I mean, the sticky posts are there for a reason...
  11. theAstroFoxx
    theAstroFoxx
    • supporter
    • 0 kudos
    Amazing mod :)
  12. Burner0000
    Burner0000
    • member
    • 0 kudos
    Shows up in CET but doesn't work with the game itself (2.12a)
    1. ThatWeirdGuyFromWork
      ThatWeirdGuyFromWork
      • premium
      • 4 kudos
      Same issue
    2. Stormie
      Stormie
      • premium
      • 43 kudos
      It's definitely working as intended. Check the pinned posts. Game and CET versions need to be the latest.
    3. ThatWeirdGuyFromWork
      ThatWeirdGuyFromWork
      • premium
      • 4 kudos
      Any known incompatibilities?
  13. DeepBlueFrog
    DeepBlueFrog
    • premium
    • 66 kudos
    People reported that my Santa Muerte mod is causing an issue with IFP installed.
    Basically, after falling to the ground and getting back up (using the animations from the Second Heart effect), actions like sitting or cutscenes end up with the wrong alignment of the camera.
    Any idea if there is anything I can do to force the right alignment with IFP after I trigger a death animation?
    1. Bonaniki
      Bonaniki
      • premium
      • 105 kudos
      have you confirmed that cutscenes mess up by my mod specifically? i check for cutscene level before changing the camera, so normally it shouldn't apply during sitting animation and all other cutscenes, so it's weird that it'd bug out.

      in any case, you can temporary disable the mod with CET:
      local ifp = GetMod("ImmersiveFirstPerson")

      -- save current state
      local wasEnabled = ifp.api.IsEnabled()

      -- disable the mod
      ifp.api.Disable()

      -- re-enable later
      if wasEnabled then
          ifp.api.Enable()
      end

      or reset the camera without CET (this is lua code, but you can adapt it for redscript):
      local fpp = Game.GetPlayer():GetFPPCameraComponent()
      fpp:SetLocalOrientation(EulerAngles.new(1, 69, 0):ToQuat())
      fpp:SetLocalPosition(Vector4.new(0, 0, 0, 1.0))

      -- use fpp:GetLocalOrientation() and fpp:GetLocalPosition() to save and restore previous values

      hope this helps
    2. DeepBlueFrog
      DeepBlueFrog
      • premium
      • 66 kudos
      Thanks.. I will check that out.
      I looked at the code for IFP while Nexus was down and I can see a detection of if the player is dead.
      If I have to bet, I would say Santa Muerte doesn't completely reset the player state after a resurrection and somehow, IFP still considers the player dead.
      Does the player being dead result in more limited camera movements? That could be consistent with what I am seeing.
    3. Bonaniki
      Bonaniki
      • premium
      • 105 kudos
      yeah, i think i got it. death triggers OnDeath event which force IFP into unloaded state (which is the state i use for menus and stuff). If you go in and out of the pause menu, IFP will load properly. But if you don't it will end up in a weird state. And if you use ifp's freelook feature it might mess up the camera a bit, because the mod doesn't know it's technically loaded yet.

      i think i'll just hook on ToResurrect method and set the IFP to loaded state after it. will release the update soon.
    4. DeepBlueFrog
      DeepBlueFrog
      • premium
      • 66 kudos
      Sweet .. thanks.
      I did more tests and forcing a reset of the camera doesn't do anything. 
      A free look after resurrection gives me a very narrow angle of movement for the camera, which is indeed a messed up state. 
      I assume this issue happens also with Vanilla Cyberpunk when using the Second Heart effect.
      I will look forward to a fix to test!
    5. DeepBlueFrog
      DeepBlueFrog
      • premium
      • 66 kudos
      I just tested the new update and the issue with the free look getting busted after a resurrection is fixed. Thanks!
      I can't tell yet if that helps with the broken alignment in cutscenes but that's good progress.
    6. gusvato3080
      gusvato3080
      • member
      • 0 kudos
      IDK if you are still tryng to fix the broken alignment thing for cutscenes, but I just wanted to tell that it's still an Issue in Phantom Liberty for me. Cutscenes are completely ruined after Reviving with Santa Muerte mods, forcing me to have to reload a save to fix it, which defeats the purpose of having that mod installed.
      Would like to know if there is a workaround tho.