Serp
King
- Joined
- Apr 1, 2015
- Messages
- 666
Hi,
how do I delete specific entries?
For example in promotions we have the following entries defined by the Game files:
How do I delete the Recon thing with a xml file?
I tried :
But this does not work. The effect is, that the whole xml file is not loaded. (this happens always if a error is in the xml file).
Do you know how to delete the Recon? And do you know, in which log or where I can see the line of an error in a xml file, which is not loaded? Sometimes errors in xml files are not obvious and very hard to find.
I already looked in Kaels Modder Guide, but their is no answer to a specific entry "where", only how to delete complete things =/
how do I delete specific entries?
For example in promotions we have the following entries defined by the Game files:
Code:
<UnitPromotions_UnitCombats>
<Row>
<PromotionType>PROMOTION_VOLLEY</PromotionType>
<UnitCombatType>UNITCOMBAT_SIEGE</UnitCombatType>
</Row>
<Row>
<PromotionType>PROMOTION_MEDIC</PromotionType>
<UnitCombatType>UNITCOMBAT_RECON</UnitCombatType>
</Row>
</UnitPromotions_UnitCombats>
I tried :
Code:
<UnitPromotions_UnitCombats>
<Delete UnitCombatType="UNITCOMBAT_RECON"/>
<Where TYPE="PROMOTION_MEDIC"/>
</UnitPromotions_UnitCombats>
Do you know how to delete the Recon? And do you know, in which log or where I can see the line of an error in a xml file, which is not loaded? Sometimes errors in xml files are not obvious and very hard to find.
I already looked in Kaels Modder Guide, but their is no answer to a specific entry "where", only how to delete complete things =/