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

Loc_n_lol

Second Lieutenant
41 Badges
May 30, 2016
167
58
  • Crusader Kings II
  • Stellaris: Galaxy Edition
  • Stellaris - Path to Destruction bundle
  • Stellaris: Nemesis
  • Stellaris: Necroids
  • Crusader Kings III
  • Stellaris: Federations
  • Stellaris: Lithoids
  • Stellaris: Ancient Relics
  • Imperator: Rome Sign Up
  • Crusader Kings II: Holy Fury
  • Stellaris: Megacorp
  • Stellaris: Distant Stars
  • Cities: Skylines - Parklife
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Crusader Kings II: Jade Dragon
  • Crusader Kings II: Monks and Mystics
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Crusader Kings II: Reapers Due
  • Stellaris: Galaxy Edition
  • Stellaris
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Cities: Skylines
  • Warlock 2: The Exiled
  • Europa Universalis IV

Information​

I have verifed my game files (Steam only)​

Yes

I have disabled all mods​

Yes

I am running the latest game update​

Yes

Required​

Summary​

can_be_knight_trigger likely typo for holy orders

Description​

has_trait = order_member # Order Members will fight for their faith even if their faith says no

In the trigger that controls whether a character can serve as a knight or not, this part makes an exception for courtiers of holy orders. This allows blind characters to serve as knights if they are part of a holy order. That seems... strange and strangely specific, but reading the comment I think I understand this was meant to go into the OR block above the one it is in : It is supposed to allow monks and priests to become knights as part of a holy order even if their religion does not allow clergy to fight.

Code:
can_be_knight_trigger = {
    trigger_if = {
        limit = {
            $ARMY_OWNER$.culture = {
                has_cultural_parameter = minimum_prowess_for_knights
            }
        }
        prowess >= 12
    }
    can_be_warrior_trigger = { ARMY_OWNER = $ARMY_OWNER$ }
    trigger_if = {
        limit = {
            OR = {
                has_trait = devoted
                is_clergy = yes
            }
        }
        OR = {
            faith = { has_doctrine_parameter = clergy_can_fight }
            culture = { has_cultural_parameter = culture_clergy_can_fight }
            AND = {
                $ARMY_OWNER$.culture = {
                    has_cultural_parameter = high_prowess_ignores_knight_restrictions
                }
                prowess >= 10
            }
        }
    }
    OR = {
        AND = {
            $ARMY_OWNER$.culture = {
                has_cultural_parameter = high_prowess_ignores_knight_restrictions
            }
            prowess >= 10
        }
        has_trait = order_member # Order Members will fight for their faith even if their faith says no
        NOT = {
            has_trait = blind
        }
    }
    is_ai = yes
}

Steps to reproduce​

N/A just start the game, or don't

Game Version​

1.9.2.1

Platform​

Windows

Additional Information​

Affected Feature​

  • Gameplay

Save Game​



Other Attachments​



 
Last edited:
Upvote 0