CyberCAT icon indicating copy to clipboard operation
CyberCAT copied to clipboard

CyberPunk 2077 Customization Assistant Tool. Work in progress Savegame editor.

Results 8 CyberCAT issues
Sort by recently updated
recently updated
newest added

- Support for Ver 1.5 - Add `SSlotVisualInfo` - Add section names

As I'm sure you probably know by now, saves made on v1.23 cannot be loaded. `(Unknown property: "FastTravelSystem.lastUpdatedAchievementCount")` Opening an issue because I do not see an existing one. Saves...

Functional Example (just set CharacterCustomizationAppearancesObj): ``` public enum Gender { Female, Male } public Gender VoiceTone { get { return (Gender)CharacterCustomizationAppearancesObj.UnknownFirstBytes[5]; } set { CharacterCustomizationAppearancesObj.UnknownFirstBytes[5] = (byte)value; } } ```

Is it possible to copy a node as is from one save file to another? What I aim to achieve is to create something similar to what a New Game...

enhancement
feature-request

Hey all! First off, great tool, loving it and it gives me some cool insights into how their save games are structed (I'm in devops in IT so I find...

tried editing the crash revolver to be a non quest item, i clicked the field that sait True, and pressed F which triggered it switching to False, but that did...

I'm not sure how easy this is to implement given the current codebase, but the ability to diff nodes (or just export the hex-decoded raw data as CSV so they...

enhancement

Currently Savegame Version is not checked. The version should be checked and a warning displayed if untested Version is loaded.

enhancement