Ok, thanks for the advice! But to prevent extensive testing, could you still clarify these:
1) can I use and not FactionType xxx multiple times to exclude several factions, i.e. like this:
Code:
and not FactionType huns
and not FactionType egyptians
and not FactionType carthage
2) can I use more than one trigger for the same ancillary? I tried it once with something else, but the game kept crashing and I assumed that it is wrong. Is the following ok:
Code:
Trigger xxx_carthage
WhenToTest xxx
Condition xxx
and FactionType carthage
AcquireAncillary AncillaryName1 chance 15
Trigger xxx_huns
WhenToTest xxx
Condition xxx
and FactionType huns
AcquireAncillary AncillaryName1 chance 15
Trigger xxx_egypt
WhenToTest xxx
Condition xxx
and FactionType egypt
AcquireAncillary AncillaryName1 chance 15