A20 Loot.xml bug?

evilC

Refugee
<lootgroup name="groupAmmoAdvancedGunslinger">
<item name="ammo9mmBulletBall" loot_prob_template="T0" count="20,40"/>
<item name="ammo9mmBulletAP" loot_prob_template="QLTemplateT1" count="20,40"/>
<item name="ammo9mmBulletHP" loot_prob_template="QLTemplateT1" count="14,30"/>
<item name="ammo9mmBulletAP" loot_prob_template="QLTemplateT2" count="20,40"/>
<item name="ammo9mmBulletHP" loot_prob_template="QLTemplateT2" count="14,30"/>
<item name="ammo44MagnumBulletAP" loot_prob_template="QLTemplateT2" count="8,19"/>
<item name="ammo44MagnumBulletHP" loot_prob_template="QLTemplateT2" count="6,14"/>
</lootgroup>


This references loot_prob_template="T0", which does not exist

Also, not sure if this is an error, or me just not understanding how the file works:

<lootgroup name="groupAmmoRegularGunslingerT1">
<item name="ammo9mmBulletBall" loot_prob_template="QLTemplateT0" count="15,30"/>
<item name="ammo9mmBulletBall" loot_prob_template="QLTemplateT1" count="15,30"/>
<item name="ammo44MagnumBulletBall" loot_prob_template="QLTemplateT1" count="6,14"/>
</lootgroup>

<lootgroup name="groupAmmoRegularGunslingerT2">
<item name="ammo9mmBulletBall" loot_prob_template="QLTemplateT0" count="20,40"/>
<item name="ammo9mmBulletBall" loot_prob_template="QLTemplateT1" count="20,40"/>
<item name="ammo44MagnumBulletBall" loot_prob_template="QLTemplateT1" count="8,19"/>
</lootgroup>


ammo9mmBulletBall appears twice in each list, with two different quality templates.

Also worthy of note is that a quality template is used as a probability template - not quite sure what the deal is here...

 
Back
Top