Trying to create a warmonger mod, unsure what string I'm looking for.

Tunnah

Warlord
Joined
Jun 11, 2017
Messages
106
Hey folks. So I'm trying to create a warmonger mod, as while there are a lot out there, I can't seem to find one that reduces your warmonger points at a faster rate than normal.

By default, warmonger points reduce 1 every 2 turns, which is insane. I assumed the entry that took care of this was

<Row Name="DIPLOMACY_WARMONGER_POINT_PERCENT_DECAY" Value="50" />

However changing it has no effect. Can anyone help me find the right string please ?

Also, is there a guide available detailing what the strings specifically do ? I'm quite er..dumb. Figuring a lot of these out is head-scratchingly infuriating ha.

Thanks!
 
Look through Leaders.xml
Code:
        <Row>
            <ModifierId>STANDARD_DIPLOMATIC_WARMONGER</ModifierId>
            <Name>ReductionTurns</Name>
            <Value>2</Value>
        </Row>
        <Row>
            <ModifierId>STANDARD_DIPLOMATIC_WARMONGER</ModifierId>
            <Name>ReductionValue</Name>
            <Value>-1</Value>
        </Row>
 
Holy crap, you absolute gent! I've tried a million different things ha, it's been driving me up the wall!

You're a superstar, thanks buddy.

EDIT: I beered you, have a pint on me =)
 
Top Bottom