Im trying to add more balance to the religions in my KGCM game and it would be a great help if the event in which Lithuania turns Catholic is removed.
Basically keeping them Pagan permanently.
Im trying to add more balance to the religions in my KGCM game and it would be a great help if the event in which Lithuania turns Catholic is removed.
Basically keeping them Pagan permanently.
In Rod We Trust
Hey mate,
If you want to remove the Lithuania Conversion event there are a few ways you can go about it. But by far the simplest way is to open the campaign_script.txt with notepad and find this entry below:
Now change to these numbers in red.;offer the conversion to Lithuania if the correct conditions are met
monitor_event FactionTurnStart FactionType lithuania
if I_NumberOfSettlements lithuania < 5
and I_EventCounter lithuania_conversion_timer >= 50
and I_EventCounter lithuania_conversion_accepted = 0
;offer conversion to christianity
historic_event lithuania_conversion true factions { lithuania, }
;if AI random chance to accept
if I_IsFactionAIControlled lithuania
generate_random_counter random_accept 0 2
if I_EventCounter random_accept < 2
set_event_counter lithuania_conversion_accepted 1
end_if
end_if
terminate_monitor
end_if
if I_EventCounter lithuania_conversion_timer >= 80
and I_EventCounter lithuania_conversion_accepted = 0
;offer conversion to christianity
historic_event lithuania_conversion true factions { lithuania, }
;if AI random chance to accept
if I_IsFactionAIControlled lithuania
generate_random_counter random_accept 0 2
if I_EventCounter random_accept < 2
set_event_counter lithuania_conversion_accepted 1
end_if
end_if
terminate_monitor
The conversion event trigger has now been put back 400 turns, save and exit. This method is much better than removing all traces of the Lithuania conversion event completely from many texts.;offer the conversion to Lithuania if the correct conditions are met
monitor_event FactionTurnStart FactionType lithuania
if I_NumberOfSettlements lithuania < 5
and I_EventCounter lithuania_conversion_timer >= 450
and I_EventCounter lithuania_conversion_accepted = 0
;offer conversion to christianity
historic_event lithuania_conversion true factions { lithuania, }
;if AI random chance to accept
if I_IsFactionAIControlled lithuania
generate_random_counter random_accept 0 2
if I_EventCounter random_accept < 2
set_event_counter lithuania_conversion_accepted 1
end_if
end_if
terminate_monitor
end_if
if I_EventCounter lithuania_conversion_timer >= 480
and I_EventCounter lithuania_conversion_accepted = 0
;offer conversion to christianity
historic_event lithuania_conversion true factions { lithuania, }
;if AI random chance to accept
if I_IsFactionAIControlled lithuania
generate_random_counter random_accept 0 2
if I_EventCounter random_accept < 2
set_event_counter lithuania_conversion_accepted 1
end_if
end_if
terminate_monitor
Dave
Last edited by Dave Scarface; February 22, 2011 at 12:13 PM.
Cheers Dave thats class.
In Rod We Trust