• 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.

richvh

Preserver of the Light
63 Badges
Dec 1, 2001
14.691
1.999
Visit site
  • Stellaris: Leviathans Story Pack
  • Pillars of Eternity
  • Crusader Kings II: Horse Lords
  • Cities: Skylines - After Dark
  • Knights of Pen and Paper 2
  • Crusader Kings II: Conclave
  • Stellaris
  • Hearts of Iron IV Sign-up
  • Stellaris Sign-up
  • Crusader Kings II: Reapers Due
  • Tyranny: Archon Edition
  • Tyranny: Archon Edition
  • Tyranny: Gold Edition
  • Crusader Kings II: Way of Life
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Surviving Mars
  • Stellaris: Synthetic Dawn
  • Tyranny - Tales from the Tiers
  • Tyranny - Bastards Wound
  • Age of Wonders III
  • Age of Wonders: Shadow Magic
  • Age of Wonders
  • Age of Wonders II
  • Crusader Kings II: Jade Dragon
  • Crusader Kings III: Royal Edition
  • Europa Universalis IV: Call to arms event
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Europa Universalis IV
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • A Game of Dwarves
  • King Arthur II
  • Knights of Pen and Paper +1 Edition
  • Magicka
  • Majesty 2 Collection
  • Europa Universalis IV: Res Publica
  • Europa Universalis: Rome
  • Rome Gold
  • Rome: Vae Victis
  • 500k Club
  • Cities: Skylines
In event WoL.10102 in wol_business_events.txt, option A has tests for kingdom and empire in ROOT scope. However, this event is a character event, and as far as I know these triggers and duchy are only valid in province scope (though some province events switch to county scope before using kingdom, so county scope may also be valid. If it is not valid, I can provide a list of offending events.)

Current:
Code:
  option = {
     name = EVTOPTA_WOL_10102
     set_character_flag = trade_route_progress
     if = {
       limit = {
         OR = {
           kingdom = { title = k_cuman }
           kingdom = { title = k_turkestan }
           empire = { title = e_persia }
           empire = { title = e_abyssinia }
           empire = { title = e_mali }
         }
       }
       character_event = { id = WoL.10103 }
       break = yes
     }
     character_event = { id = WoL.10104 }
   }
Proposed fix:
Code:
  option = {
     name = EVTOPTA_WOL_10102
     set_character_flag = trade_route_progress
     if = {
       limit = {
         capital_scope = {
           OR = {
             kingdom = { title = k_cuman }
             kingdom = { title = k_turkestan }
             empire = { title = e_persia }
             empire = { title = e_abyssinia }
             empire = { title = e_mali }
           }
         }
       }
       character_event = { id = WoL.10103 }
       break = yes
     }
     character_event = { id = WoL.10104 }
   }
Depending on what the intent was, any_demesne_province or any_realm_province could be substituted for capital_scope.
 
Upvote 0