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

Marconius

Emperor
112 Badges
Apr 6, 2007
2.205
10
  • Warlock 2: The Exiled
  • March of the Eagles
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Europa Universalis: Rome
  • Rome Gold
  • Sengoku
  • Sword of the Stars
  • Sword of the Stars II
  • The Showdown Effect
  • Victoria 2
  • Rome: Vae Victis
  • Warlock: Master of the Arcane
  • Magicka
  • War of the Roses
  • 500k Club
  • Cities: Skylines
  • Cities: Skylines Deluxe Edition
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Pre-order
  • Magicka: Wizard Wars Founder Wizard
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Magicka 2
  • Europa Universalis IV: Common Sense
  • Stellaris: Nemesis
  • Europa Universalis III
  • Cities in Motion
  • Cities in Motion 2
  • 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
  • Dungeonland
  • A Game of Dwarves
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • Gettysburg
  • Heir to the Throne
  • Europa Universalis III Complete
  • Knights of Pen and Paper +1 Edition

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​

The Pope can't count when Requesting Claims

Description​

When doing Request Claim from the Pope, the values shown for the decision don't add up to the total.

It also feels like it's way too easy to get a claim, but I'm not sure that part is actually a bug,

Steps to reproduce​

1. Open any Request Claim to the Pope.
2. Add up the values shown against the total.

Game Version​

1.12.2.1

Platform​

Windows

Additional Information​

Affected Feature​

  • Gameplay
  • Interface

Save Game​

View attachment pope.ck3

Other Attachments​

Screenshot 2024-03-09 234003.jpg

 
  • 2Like
  • 1
Reactions:
Running into the same problem. I think what's happening is now the acceptance also relates to the Pope's opinion to the requestee (King Lothaire II in your case), but this somehow does not show in the calculation. An easy way to verify is to open debug mode, control the requestee, change the Pope's opinion, and switch back to the requester. You will see the acceptance score change. In your case, it must be that the Pope hates King Lothaire II...

I'm guessing it's not shown in the accept score breakdown because Paradox doesn't want you to easily see the Pope's opinion to other characters. Not sure if it's the only thing hidden tho.
 
Last edited:
Just looking at the shown numbers, it looks like they would add up if the base reluctance shows negative but is sign flipped in the actual calculation which would be a pretty big bug for calculating claim granting.
 
It's same for other religion s too
1712563034514.png
And indeed it looks like there is a hidden value of 'religious head opinion of target' in works here
 

Attachments

  • 1712562662777.png
    1712562662777.png
    1,9 MB · Views: 0
There is indeed a modifier. See below from 00_religious_interactions.txt:

Code:
modifier = { # Unlikely if recipient likes Secondary Recipient
            add = {
                if = {
                    limit = {
                        NOT = { scope:recipient = scope:secondary_recipient }
                    }
                    subtract = "scope:recipient.opinion(scope:secondary_recipient)"
                }
            }
        }

Perhaps the bug is that there isn't a desc = XXX on this modifier?
 
Last edited:
  • 2
Reactions:
I did a little testing and yeah, PDX just need to replace the above with this:


Code:
opinion_modifier = {
            trigger = {
                NOT = { scope:recipient = scope:secondary_recipient }
            }
            who = scope:recipient
            opinion_target = scope:secondary_recipient
            multiplier = -1
            desc = AI_OPINION_REASON
        }

Everything then adds up:
1713997607391.png
 
  • 4
Reactions: