Results 1 to 3 of 3

Thread: Removing Lithuania Catholic Event

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default Removing Lithuania Catholic Event

    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

  2. #2

    Default Re: Removing Lithuania Catholic Event

    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:

    ;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
    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 >= 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
    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.

    Dave
    Last edited by Dave Scarface; February 22, 2011 at 12:13 PM.

  3. #3

    Default Re: Removing Lithuania Catholic Event

    Cheers Dave thats class.
    In Rod We Trust

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •