Skip to content

Commit

Permalink
Support patch 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
psiberx committed Dec 13, 2024
1 parent cd6ff92 commit c5b124f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/archive/source/raw/**/*.json
/archive/*.xml
/archive/*.zip
/archive/fileTreeState.json
/build
/dev
/*.log
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

### Requirements

- Cyberpunk 2077 2.13
- [ArchiveXL](https://github.com/psiberx/cp2077-archive-xl) 1.16.9+
- Cyberpunk 2077 2.2
- [ArchiveXL](https://github.com/psiberx/cp2077-archive-xl) 1.18.0+
- [TweakXL](https://github.com/psiberx/cp2077-tweak-xl) 1.10.4+
- [Codeware](https://github.com/psiberx/cp2077-codeware) 1.12.7+
- [redscript](https://github.com/jac3km4/redscript) 0.5.24+
- [Codeware](https://github.com/psiberx/cp2077-codeware) 1.13.0+
- [redscript](https://github.com/jac3km4/redscript) 0.5.25+

### Installation

Expand Down
2 changes: 1 addition & 1 deletion scripts/Facade.reds
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import EquipmentEx.OutfitSystem

public abstract class EquipmentEx {
public static func Version() -> String = "1.2.6";
public static func Version() -> String = "1.2.7";

public static func Activate(game: GameInstance) {
OutfitSystem.GetInstance(game).Activate();
Expand Down
8 changes: 5 additions & 3 deletions scripts/Overrides/PhotoModePlayerEntityComponent.reds
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ private final func OnGameAttach() {
private final func SetupInventory(isCurrentPlayerObjectCustomizable: Bool) {
wrappedMethod(isCurrentPlayerObjectCustomizable);

this.m_paperdollHelper.AddPuppet(this.fakePuppet);
if this.customizable {
this.m_paperdollHelper.AddPuppet(this.fakePuppet);

if this.m_outfitSystem.IsActive() {
this.m_outfitSystem.EquipPuppetOutfit(this.fakePuppet, this.loadingItems);
if this.m_outfitSystem.IsActive() {
this.m_outfitSystem.EquipPuppetOutfit(this.fakePuppet, this.loadingItems);
}
}
}

Expand Down
24 changes: 12 additions & 12 deletions support/hints/EquipmentEx.toml
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
[[UNRESOLVED_REF]]
id = "ARCHIVEXL_11609"
id = "ARCHIVEXL_11800"
span_starts_with = "ArchiveXL"
message = "Install ArchiveXL 1.16.9 or higher"
message = "Install ArchiveXL 1.18.0 or higher"

[[UNRESOLVED_METHOD]]
id = "ARCHIVEXL_11609"
id = "ARCHIVEXL_11800"
span_starts_with = "ArchiveXL"
message = "Install ArchiveXL 1.16.9 or higher"
message = "Install ArchiveXL 1.18.0 or higher"

[[UNRESOLVED_REF]]
id = "TWEAKXL_11004"
span_starts_with = "TweakXL"
message = "Install TweakXL 1.10.4 or higher"

[[UNRESOLVED_FN]]
id = "CODEWARE_11207"
id = "CODEWARE_11300"
span_starts_with = "Print(command)"
message = "Install Codeware 1.12.7 or higher"
message = "Install Codeware 1.13.0 or higher"

[[UNRESOLVED_FN]]
id = "CODEWARE_11207"
id = "CODEWARE_11300"
line_contains = "UTF8StrLower"
message = "Install Codeware 1.12.7 or higher"
message = "Install Codeware 1.13.0 or higher"

[[UNRESOLVED_METHOD]]
id = "CODEWARE_11207"
id = "CODEWARE_11300"
line_contains = "ForgetItemID"
message = "Install Codeware 1.12.7 or higher"
message = "Install Codeware 1.13.0 or higher"

[[UNRESOLVED_TYPE]]
id = "CODEWARE_11207"
id = "CODEWARE_11300"
line_contains = "InMenuPopup"
message = "Install Codeware 1.12.7 or higher"
message = "Install Codeware 1.13.0 or higher"

[[UNRESOLVED_METHOD]]
id = "EQEX_MIX"
Expand Down

0 comments on commit c5b124f

Please sign in to comment.