Hello Guys!
As per title, I would need to set that when some taxation law will be enacted, the modifiers should be applied only to the AI.
In my mind i imagined something like that:
VANILLA
tax_modifier_very_low = {
tax_consumption_add = 0.20
tax_land_add = 0.40
tax_income_add = 0.04
}
MOD
tax_modifier_very_low = {
if = {
limit = {
is_player = no
}
}
tax_consumption_add = 0.20
tax_land_add = 0.40
tax_income_add = 0.04
}
but unfortunately i tried different script, but are not working.
Could you help me with that?
Thanks in advance
As per title, I would need to set that when some taxation law will be enacted, the modifiers should be applied only to the AI.
In my mind i imagined something like that:
VANILLA
tax_modifier_very_low = {
tax_consumption_add = 0.20
tax_land_add = 0.40
tax_income_add = 0.04
}
MOD
tax_modifier_very_low = {
if = {
limit = {
is_player = no
}
}
tax_consumption_add = 0.20
tax_land_add = 0.40
tax_income_add = 0.04
}
but unfortunately i tried different script, but are not working.
Could you help me with that?
Thanks in advance