Created
June 18, 2025 09:30
-
-
Save impliedgg/1c0c46f0a0d7e711fa0e4b1b62b2ea99 to your computer and use it in GitHub Desktop.
mod for a mod for cyberpunk 2077
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
personal modification of https://www.nexusmods.com/cyberpunk2077/mods/9240 | |
to use: | |
1. apply patch manually or with `patch` (either way it's only 1 line) | |
2. launch cyberpunk 2077 | |
3. load your save | |
4. open the skill tree menu | |
5. (optional) reset your skills | |
6. save your game | |
7. ??? | |
8. profit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- ResetAttributesAlwaysAvailable.reds 2025-06-18 04:19:03.067317100 -0500 | |
+++ ResetAttributesAlwaysAvailable_FlagSet.reds 2025-06-18 04:18:43.906358100 -0500 | |
@@ -7,6 +7,7 @@ | |
if this.m_questSystem.GetFact(n"ResetAttributeDisabled") == 0 { | |
inkWidgetRef.SetVisible(this.m_resetAttributesButton, true); | |
} else { | |
+ this.m_questSystem.SetFact(n"ResetAttributeDisabled", 0); | |
inkWidgetRef.SetVisible(this.m_resetAttributesButton, true); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment