Thats not a bad shout, and you do these edits via xpath I take? We're having a little issue setting that up properly but once we get that sorted we can make these changes! Thanks for that
Yes, this is how I did it in my modlet
<!-- ********************************************************************************************************************************************** -->
<!-- Changes to Loot Quality Tables -->
<set xpath="/lootcontainers/lootqualitytemplates/lootqualitytemplate/qualitytemplate/loot[@quality='3']/@prob">0.05</set>
<set xpath="/lootcontainers/lootqualitytemplates/lootqualitytemplate/qualitytemplate/loot[@quality='4']/@prob">0.05</set>
<set xpath="/lootcontainers/lootqualitytemplates/lootqualitytemplate/qualitytemplate/loot[@quality='5']/@prob">0.05</set>
<set xpath="/lootcontainers/lootqualitytemplates/lootqualitytemplate/qualitytemplate/loot[@quality='6']/@prob">0.05</set>
and this is what it did in my configdump files
<qualitytemplate level="263,264" default_quality="1">
<loot quality="1" prob="0.308" />
<loot quality="2" prob="0.367" />
<loot quality="3" prob="0.05"><!--Attribute "prob" replaced by: "BFT2020_AllInOneMod"--></loot>
<loot quality="4" prob="0.05"><!--Attribute "prob" replaced by: "BFT2020_AllInOneMod"--></loot>
<loot quality="5" prob="0.05"><!--Attribute "prob" replaced by: "BFT2020_AllInOneMod"--></loot>
</qualitytemplate>
<qualitytemplate level="289,999999" default_quality="1">
<loot quality="6" prob="0.05"><!--Attribute "prob" replaced by: "BFT2020_AllInOneMod"--></loot>
</qualitytemplate>
Still tweaking and understanding on how it works out, but based on what I think occurs, the default quality is what happens if it doesn't roll for the probabilities. So at lootstage 290, if it doesn't roll for Q6, it defaults to Q1. At those stages, I will probably change the default to a higher Q, say 2 at the least.
Another option is to simply remove the existing loot quality templates and then insert your own custom made ones. For example,
Code:
<remove xpath="/lootcontainers/lootqualitytemplates/lootqualitytemplate[@name='QLTemplateT0']"/>
<insertAfter xpath="/lootcontainers/lootqualitytemplates/lootqualitytemplate[@name='questT3QualTemplate']">
custom quality templates for T0, T1, T2, T3
</insertAfter>