<QuestChoiceDef>
<Description>Violence is the only language they will understand. Put them down.</Description>
<NextObjectiveID>4</NextObjectiveID>
<Encounter>
<Liklihood>100</Liklihood>
<BattleIdentifier>Slaver</BattleIdentifier>
<WillRespawn>0</WillRespawn>
<WanderingRadius>0</WanderingRadius>
<UnitInstance>
<UnitType>Champion_Daxus</UnitType>
<UnitName>Daxus the Slaver</UnitName>
<Level>7</Level>
</UnitInstance>
etc...
The problem lies with the fact that the Unit
Champion_Daxus weapon is a champion equipment </AutoCreateEquipment>Axe_Berserkers</AutoCreateEquipment>
So it will not show up when you fight him because he is not declared a champion in the xml (on a particular choice part)
Thus, the correct change to this would be to add
<UnitSubclassType>Champion</UnitSubclassType>
<UnitInstance>
<UnitType>Champion_Daxus</UnitType>
<UnitName>Daxus the Slaver</UnitName>
<UnitSubclassType>Champion</UnitSubclassType>
<Level>7</Level>
</UnitInstance>
This will fix that particular problem.