I spent so much time trying to come up with a better "question in one sentence," but cannot figure out how to describe this succinctly.
I'm trying to convert the Woodland Piano sample library to DS. It was recorded with 3 mics and, in Kontakt, the mic sliders act as a sort of override for all of the other samples. Here's the original for reference:

If, for instance, I reduce MK4 all the way to 0 and set Normal to 100, I'll get the full output for "Normal" with the other 2 mics, but nothing from the MK4. When trying to replicate this with groups in DS, adjusting the MK4 slider changes/overrides the volume for every MK4-recorded sample, regardless of how the others (Normal, Felt, etc) have been set. So, as an example, If I have Muted and Pluck at 0, but adjust the MK4 to 50%, Muted and Pluck will move to 50%
Likewise, if MK4 is set to 0 and I adjust Normal, it will also set the volume of the MK4-recorded Normal samples and all mics will be set at an equal volume.
My Normal control looks like:
<labeled-knob x="25" y="110" label="NORMAL" type="percent" minValue="0" maxValue="100" value="100" textColor="DDFFFFFF"
textSize="20" width="100" height="100" trackForegroundColor="FFFFFFFF" trackBackgroundColor="88FFFFFF">
<binding type="amp" level="group" tags="normal" parameter="AMP_VOLUME" translation="linear" translationOutputMin="0" translationOutputMax="1"/>
</labeled-knob>
And my mic control looks like:
<labeled-knob x="645" y="17" width="80" height="150" textSize="20" textColor="DDFFFFFF" trackForegroundColor="FFFFFFFF" label="MK4" type="percent" minValue="0" maxValue="100" value="100" style="linear_vertical">
<binding type="amp" level="group" tags="MK4" parameter="AMP_VOLUME" translation="linear" translationOutputMin="0" translationOutputMax="1" />
</labeled-knob>
I had looked for maybe a "MAX_OUTPUT" setting or something that could cap the MK4 volume regardless of how it was set via the UI, but haven't found anything.
Thanks.