Results 1 to 3 of 3

Thread: Is it possible for generals to gain acumen?

  1. #1

    Default Is it possible for generals to gain acumen?

    Is it possible for generals with low acumen to gain it, ex. if I place them in an Imperial College? I currently have too many war generals and too few governors.

    if not, is the trait for Acumen Jn2000 so I can mod it in myself?

  2. #2

    Default Re: Is it possible for generals to gain acumen?

    I can't figure out why the following code doesn't seem to work (Chances are set to 100 for testing). Anyone have any advice? Specifically, removing the "and RemainingMPPercentage = 100 and EndedInSettlement and SettlementBuildingExists >= blah" part works so I know the trait is correct for Acumen.

    Code:
    ;------------------------------------------
    Trigger ludus_magnus
        WhenToTest CharacterTurnEnd
    
        Condition AgentType = named character
              and RemainingMPPercentage = 100
              and EndedInSettlement
              and SettlementBuildingExists >= ludus_magnus
              and Trait Jn2001 = 0
              and Trait Jn2000 <= 7000
    
        Affects Jn2000  1000  Chance  100
    
    ;------------------------------------------
    Trigger scriptorium
        WhenToTest CharacterTurnEnd
    
        Condition AgentType = named character
              and RemainingMPPercentage = 100
              and EndedInSettlement
              and SettlementBuildingExists >= scriptorium
              and Trait Jn2001 = 0
              and Trait Jn2000 <= 6000
    
        Affects Jn2000  1000  Chance  100
    
    ;------------------------------------------
    Trigger academy
        WhenToTest CharacterTurnEnd
    
        Condition AgentType = named character
              and RemainingMPPercentage = 100
              and EndedInSettlement
              and SettlementBuildingExists >= academy
              and Trait Jn2001 = 0
              and Trait Jn2000 <= 5000
    
        Affects Jn2000  1000  Chance  100

  3. #3

    Default Re: Is it possible for generals to gain acumen?

    Nevermind, it works, seems my savegame had RemainingMPPercentage != 0 for all of my generals.

Posting Permissions

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