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

junassa

General
54 Badges
May 10, 2017
2.008
1.160
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cradle of Civilization
  • Stellaris
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Crusader Kings III
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Hearts of Iron IV: Together for Victory
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • Battle for Bosporus
  • Hearts of Iron IV: Death or Dishonor
  • Stellaris: Synthetic Dawn
  • Stellaris: Apocalypse
  • Stellaris: Ancient Relics
  • Hearts of Iron IV: Expansion Pass
  • Imperator: Rome
  • Europa Universalis IV: Golden Century
  • Crusader Kings II: Holy Fury
  • Stellaris: Megacorp
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV
  • Europa Universalis IV: Conquest of Paradise
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis 4: Emperor
  • Victoria: Revolutions
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Mare Nostrum
  • Crusader Kings II
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Art of War
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
Short summary of your issue
Thoughtful Perk Not Working

Game Version
1.5.1

What OS are you playing on?
Windows

What platform are you using?
Steam

What DLC do you have installed?
Royal Court,

Do you have mods enabled?
No

Have you tried verifying your game files (Steam only)?
No

How much "pain" is this causing you?
8

Please explain the issue you experienced in the most condensed way possible
It doesn't appear that thoughtful is giving the +opinion boost it was previously. Giving gifts as ruler is only boosting opinion by 7 -14 points.

Please explain how to reproduce the issue
take the thoughtful perk and gift gold to vassal.

Is there anything else you think could help us identify/replicate the issue?


I have attached a save game
Yes

Upload Attachment
File(s) attached
 

Attachments

  • Daura_867_Ironman.ck3
    26 MB · Views: 0
  • 2022_03_13_1.png
    2022_03_13_1.png
    3,5 MB · Views: 0
Upvote 0

Mcgan

Lt. General
18 Badges
Mar 19, 2020
1.219
1.794
  • Crusader Kings III: Royal Edition
  • Stellaris: Galaxy Edition
  • Stellaris - Path to Destruction bundle
  • Stellaris: Distant Stars
  • Stellaris: Synthetic Dawn
  • Stellaris: Leviathans Story Pack
  • Stellaris: Apocalypse
  • Stellaris: Megacorp
  • Stellaris: Ancient Relics
  • Stellaris: Federations
  • Stellaris: Nemesis
  • Stellaris: Humanoids Species Pack
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Lithoids
  • Stellaris: Necroids
Pretty sure it works as intended:
1647220965379.png


Keep in mind that there are many factors deciding the opinion bonus, and then thoughtful perk just doubles that.
Basically, your diplomacy, the recipient's greed, and whether the recipient is your liege or your head of faith will determine the base opinion result.
In that screenshot, my character has 33 diplomacy and the target is her liege which is generous.

Details:
\common\script_values\00_basic_values.txt
Code:
send_gift_opinion = {
    value = 5
    add = {
        if = {
            limit = {
                scope:actor.diplomacy > 0
            }
            add = {
                value = scope:actor.diplomacy
                multiply = 3
            }
        }
        if = {
            limit = {
                scope:recipient.ai_greed > 0
            }
            add = {
                value = scope:recipient.ai_greed
                divide = 3
            }
        }
        if = {
            limit = {
                scope:recipient.liege = scope:actor
            }
            divide = 1.5
        }
        if = {
            limit = {
                scope:recipient = scope:actor.faith.religious_head
            }
            divide = 3
        }
        max = 100
    }
    if = {
        limit = {
            scope:actor.culture = { has_cultural_parameter = more_gift_opinion }
        }
        multiply = 1.2
    }
    if = {
        limit = {
            scope:actor = { has_perk = thoughtful_perk }
        }
        multiply = 2
    }
}