We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: