1 items

File information

Last updated

Original upload

Created by

Odashikonbu - original created by ibb

Uploaded by

odashikonbu

Virus scan

Safe to use

Tags for this mod

73 comments

  1. Xythurr
    Xythurr
    • member
    • 4 kudos
    Can confirm from Redscript error that this mod no longer works.
    1. ArtfulTease
      ArtfulTease
      • member
      • 0 kudos
      Seconded. This mod no longer works for me either.
  2. goostoost
    goostoost
    • member
    • 4 kudos
    Here's a pastebin link to a fix, copy and replace the whole file, oughta work like a charm.

    https://pastebin.com/bnGB02RE
    1. Mazing
      Mazing
      • supporter
      • 0 kudos
      Worked perfect. Thanks.
    2. VSRVector
      VSRVector
      • member
      • 9 kudos
      Finally working. Thanks.
    3. SonOfMoses
      SonOfMoses
      • supporter
      • 1 kudos
      Thanks a lot man. Now we just to bring back the awesome hover jumping fortified ankles, then I'll be set!
    4. SonOfMoses
      SonOfMoses
      • supporter
      • 1 kudos
      Well it was working but all of a sudden an enemy started tracing me wtf :( 

      Has it suddenly stopped working for you guys?
      All I did was install a mod to skip the intro logos when you load up Cyberpunk 
    5. SonOfMoses
      SonOfMoses
      • supporter
      • 1 kudos
      Perhaps I installed the mod wrong?

      I downloaded and opened your original mod from here, deleted all of the text, and just filled it with the text from the link you gave us : 
      https://pastebin.com/bnGB02RE 
      And yes, I also installed the prerequisite mods which are redscript and Cybercmd(standalone version).
      Any ideas?
    6. SonOfMoses
      SonOfMoses
      • supporter
      • 1 kudos
      Sorry for all  these messages, but .. it seems to just work sometimes. Like I just wiped out a group with contagion, and I wasn't getting traced at all. 
      Weird...
    7. mukulhastak
      mukulhastak
      • supporter
      • 5 kudos
      Worked, thanks!
    8. LeonK555
      LeonK555
      • member
      • 0 kudos
      @SonOfMoses
      When you got traced, did you check if there was a netrunner nearby?
    9. jimbe4mXL
      jimbe4mXL
      • member
      • 2 kudos
      TY, works on 2.12a.
    10. phol13
      phol13
      • supporter
      • 3 kudos
      what did you do, copy the text and paste it into the .REDS file?
    11. pyppenia
      pyppenia
      • member
      • 1 kudos
      ty, still works on 2.2!
    12. BigJamaal
      BigJamaal
      • member
      • 1 kudos
      Ah
  3. NEODARKHUNTER
    NEODARKHUNTER
    • member
    • 2 kudos
    Eine Frage an die welche die Spiele version 2.12a nutzten.
    Welche Anpassung habt ihr vorgenommen damit diese mod wieder geht?
    Oder welche nutzt ihr jetzt?

    A question for those who used the games version 2.12a.
    What adjustments did you make so that this mod works again?
    Or which one are you using now?
  4. TruesDK
    TruesDK
    • member
    • 0 kudos
    Doesnt work as of 23-02-24
  5. BA77SACK
    BA77SACK
    • member
    • 0 kudos
    has this been updated for PL 2.1 yet?
  6. AnnaShapard
    AnnaShapard
    • member
    • 0 kudos
    This Mod seems to conflict with the Stealthrunner mod https://www.nexusmods.com/cyberpunk2077/mods/7616 and part of the game, once installed i don't get NCPD crime notifications anymore!:/
  7. TheHoss2
    TheHoss2
    • premium
    • 27 kudos
    Fixed the error by simply rewriting the whole ting to this


    @wrapMethod(NPCPuppet)
    public final static func RevealPlayerPositionIfNeeded(ownerPuppet:
    wref, playerID: EntityID, opt isPrevention: Bool)
    -> Bool {
     let characterRecord: ref = TweakDBInterface.GetCharacterRecord(ownerPuppet.GetRecordID());
     let archetypeName: gamedataArchetypeType = characterRecord.ArchetypeData().Type().Type();
     let isNetrunner: Bool = ArrayContains(
     [gamedataArchetypeType.NetrunnerT1, gamedataArchetypeType.NetrunnerT2, gamedataArchetypeType.NetrunnerT3],archetypeName);
     if isNetrunner {
     wrappedMethod(ownerPuppet,playerID,isPrevention);
     }
     else
     {
     return false;
     }
    }


    This a a wrap instead of a replace
    It moves the isNetrunner check out of the normal function and the evt
    problem can be handled by the normal ingame function IF it is a
    netrunner
    1. goostoost
      goostoost
      • member
      • 4 kudos
      whatever this is didnt really fix the error on startup, if thats the error you were talking about

       method RevealPlayerPositionIfNeeded not found on NPCPuppet
    2. TheHoss2
      TheHoss2
      • premium
      • 27 kudos
      Eh, posting code here is a mess. They add linebreaks and sometimes they simply wont let me post.
      Thats the second line

      public final static func RevealPlayerPositionIfNeeded
      (ownerPuppet: wref, playerID: EntityID, opt isPrevention: Bool) -> Bool {
    3. TheHoss2
      TheHoss2
      • premium
      • 27 kudos
      You need to put this in one line. Sounds stupid but if I do it here I cant post it.

      Its probably a safety feature. You're not really supposed tp post mods as text here.
    4. goostoost
      goostoost
      • member
      • 4 kudos
      no i actually did do that, i had an unedited version of this file side by side and copied the line formats so i did have it the way you typed it in one line, but didnt work, gave that error message i wrote - perhaps you can post an imgur link so i can see how you pasted it all and ill copy that, can you also tell how many spaces each line has? 

      to be clear this wrap you wrote down means that itll fix this mod, and at the same time not give anymore redscript error messages every time the game launches? because there was a comment here that said removing:

        let evt: ref<HackPlayerEvent>;
        let hackingMinigameBB: ref<IBlackboard>;

      would make it work and it did, only it still gave redscript error messages every launch but it still worked, however this mod https://www.nexusmods.com/cyberpunk2077/mods/9306 (which is the same as this only that one prevents all enemies and not just netrunners from being able to track you) does work and also doesnt give redscript errors at launch
    5. TheHoss2
      TheHoss2
      • premium
      • 27 kudos
      Eh, its that dammed message board. It removes the angle brackets.

      It has to be
      ...wref[ScriptedPuppet], player ID...

      but with angle brackets instead of square brackets


    6. goostoost
      goostoost
      • member
      • 4 kudos
      i think its much better if you just pasted an image link of how your script is supposed to look like
    7. Adnan008
      Adnan008
      • supporter
      • 0 kudos
      +1, or you know, you could post it as a new mod @TheHoss2
    8. Sp0rk
      Sp0rk
      • supporter
      • 17 kudos
      I take no credit for this code, just posting the code that TheHoss2 provided above as an image, I have NOT tested if this code works, I can confirm that it compiles properly as per redscript_rCURRENT.log and gets me to the main menu

      https://staticdelivery.nexusmods.com/images/3333/417517-1702115445.png

      edit: can confirm the code works fine, also pastebin:
      https://pastebin.com/nCYwgPFY
    9. xDonKx
      xDonKx
      • supporter
      • 0 kudos
      @TheHose2 u could make an updated version of this mod and post it and give cred to the original creator.
    10. goostoost
      goostoost
      • member
      • 4 kudos
      yes, your fixes worked, thanks a lot good job, new comment for pastebin incoming
  8. VSRVector
    VSRVector
    • member
    • 9 kudos
    dosen't work on 2.1
    1. Godbearsupermax
      Godbearsupermax
      • member
      • 0 kudos
      We need this mod we need it
  9. goostoost
    goostoost
    • member
    • 4 kudos
    To anyone reading this, there is a way to get this to work, I found the workaround by reading a comment by helly111 from the Disable Reveal Position Hack - All Enemies version:

    Open the script with a text editor and delete the 2 following lines:

      let evt: ref<HackPlayerEvent>;
      let hackingMinigameBB: ref<IBlackboard>;

    Save the file and launch the game.

    This works for both that version and this version, but NOTE that even if you do this, YOU WILL STILL GET AN ERROR MESSAGE when starting up the game, nonetheless it will still work. This error message only shows up on this version and not the All Enemies version for some reason.

    If you want specifics, what I did was only highlight the lines needed to be deleted, I highlighted them one line at a time, and deleted with the delete button and not backspace if that helps, maybe not but hey whatever works works right?
    1. g00head
      g00head
      • premium
      • 0 kudos
      This did NOT fix it for me - tried both commenting out the lines and deleting them.

      Taking on random groups of mobs with no netrunners and still getting located as soon as I drop a quick hack on them
    2. goostoost
      goostoost
      • member
      • 4 kudos
      im sorry, but theres clearly something that you've done wrong yourself, because im playing from the start and right now im with jackie trying to get back sandra dorsett and im in the point where were hiding in a corner waiting for 2 scavs to come out so we can stealth kill/ko them and when they both came out and went to their spots, i hit one with overheat, then waited 2 seconds and applied short circuit to the other - no tracing, works absolutely fine

      perhaps you havent updated your core mods, or maybe you accidentally deleted a letter in the notepad, simply something on your end is what im trying to get at
    3. goostoost
      goostoost
      • member
      • 4 kudos
      in fact, i will go ahead and record my screen from desktop, showing i have the updated core mods + this mod with the edited file then launch game and show that tracing is removed, give me a few minutes to record and upload

      - okay, recorded, i didnt know you couldnt see my mouse cursor but do take note of the version of the game and mods - all updated, and the lines i deleted from the notepad

      https://www.youtube.com/watch?v=0QdQS_Zgef0
    4. g00head
      g00head
      • premium
      • 0 kudos
      Ok, there's something really odd going on here...

      The downloaded file from this mod and a grab of yours from the video is here:  https://imgur.com/a/m80VRCi
      - Notice the two lines to be removed are at the top just under the 'public' statement
      - I re-downloaded the mod to make this image, just to be sure I was using the proper source
      - Your file has way more removed than just those two lines

      I'm going to change my file to match yours, and your version honestly makes sense because it looks like you've also removed anything using the evt variable that's creation was a removed line, as well as anything referencing the hackingMinigameBB and IBlackboard variables.

      EDIT: I wanted to add, thank you for showing the version of the file you're using as that's probably key to figuring out why mine is borked and yours isn't

      EDIT 2: All right, using your version of the script seems to work fine - I don't even get the script error at startup which is a nice QoL.  I have no explanation why your script is so short comparatively, but it's working so I'm good.  Thanks for posting your version for comparison, probably wouldn't have figured this out without it.
    5. goostoost
      goostoost
      • member
      • 4 kudos
      actually, i made a mistake in that video, the part in the video where i made a comparison with the two notepads, is actually the file from the other mod version of this that im using which is disables tracking for all enemies because when i used that with the 2 lines removed, it didnt even show any error at startup

      that version actually has less lines compared to this version which is why its shorter, but do take note that for this version, even if you remove the two lines, it will still remove the tracing in the game but you will still get an error message at startup, as to if it makes enemy netrunners able to track you if you hack them... i havent gone too far into the game to try but needless to say this version really does need an update for that script error everytime it launches problem

      so for now because i dont want to keep getting that annoying startup error im using that version until a fix is updated here
  10. goostoost
    goostoost
    • member
    • 4 kudos
    While this mod does work by deleting the two lines in notepad, it really does need an update because it shows redscript errors, the tracing indeed is removed but its annoying to have a redscript error notification everytime the game is launched