• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

unmerged(95157)

Corporal
3 Badges
Mar 21, 2008
48
0
  • Deus Vult
  • Heir to the Throne
  • Victoria: Revolutions
So, on another site I'm running an AAR, and a situation in the game came up where such an event where the Orthodox leaders of Europe might choose to return to the Western Church fold was needed. I'm a bit new at making events, but I think I'm off to an okay start. My main problem is I can't figure out the proper "effect = { } " for the choice for Orthodox leaders to convert them to Catholicism if they choose the (Weighted) option. Any help would be appreciated.

############################

#THIRD COUNCIL OF NICAEA#

############################
character_event = {
id = 18000

picture = "event_religion"

trigger =
condition = { type = religion value = catholic }
condition = { type = year value = 1220 }
}

mean_time_to_happen = { months = 70 }

action_a = {#Glory be to the Mother Church!
effect = { piety = value = 1 }

}

}


############################

#THIRD COUNCIL OF NICAEA#

############################
character_event = {
id = 18001

picture = "event_religion"

trigger =
condition = { type = religion value = orthodox }
condition = { type = year value = 1220 }
}

mean_time_to_happen = { months = 70 }

action_a = {#It is inevitable, this reunification
ai_chance = 70
effect = { piety value = 25 }
effect = { prestige scale = -10
}

action_b = {#First among equals, bah!
ai_chance = 30
effect = { piety value = 25 }
effect = { prestige scale = 10 }
}

}
 
Characters can only convert to the religion of their realm (=the religion of the highest ruler in the realm).

So the effect you want to accomplish isn't possible by event.
 
Characters can only convert to the religion of their realm (=the religion of the highest ruler in the realm).

So the effect you want to accomplish isn't possible by event.

Ah, I had a feeling that might be the case, from looking through the description files. Guess I'll have to do a flavor event and then come EUIII conversion have the Acheaens convert or something.

Thanks.