Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mod Support for MilitaryPonchosExpanded / RemasterExpanded #89

Open
Rokem opened this issue Dec 1, 2024 · 0 comments
Open

Mod Support for MilitaryPonchosExpanded / RemasterExpanded #89

Rokem opened this issue Dec 1, 2024 · 0 comments
Labels
contribution New mod support

Comments

@Rokem
Copy link

Rokem commented Dec 1, 2024

Hello! Here is the code to add support for the expanded military ponchos added by these two mods:
MilitaryPonchosExpanded
PonchosRemasteredExpanded

I recommend adding these to SmallMod_Items.lua under MilitaryPonchos.

--MilitaryPonchosExpanded
--https://steamcommunity.com/sharedfiles/filedetails/?id=2858828646
if getActivatedMods():contains("MilitaryPonchosExpanded")
or getActivatedMods():contains("MilitaryPonchosExpandedNerf")
or getActivatedMods():contains("MilitaryPonchosExpandedNerfPlus") then
TweakItem("Base.MPonchoBrownUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoBrownDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderBRN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderBRNdown","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoRedUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoRedDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderRED","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderREDdown","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoNavyUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoNavyDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderNAV","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderNAVdown","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoWhiteUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoWhiteDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderWHT","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderWHTdown","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoCowUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoCowDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderCOW","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderCOWdown","DisplayCategory","ClothBody");
end

--PonchosRemasteredExpanded
--https://steamcommunity.com/sharedfiles/filedetails/?id=3375246630
if getActivatedMods():contains("PonchosRemasteredExpanded")
or getActivatedMods():contains("PonchosRemasteredExpandedNerf") then
TweakItem("Base.MPonchoBrownUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoBrownDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderBROWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderBROWNdown","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoRedUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoRedDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderRED","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderREDdown","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoNavyUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoNavyDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderNAVY","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderNAVYdown","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoWhiteUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoWhiteDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderWHITE","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderWHITEdown","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoGreyUP","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoGreyDOWN","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderGREY","DisplayCategory","ClothBody");
TweakItem("Base.MPonchoShoulderGREYdown","DisplayCategory","ClothBody");
end
@ChobitsCrazy ChobitsCrazy added the contribution New mod support label Feb 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
contribution New mod support
Projects
None yet
Development

No branches or pull requests

2 participants