-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
contributionNew mod supportNew mod support
Description
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
Metadata
Metadata
Assignees
Labels
contributionNew mod supportNew mod support