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

rafek

First Lieutenant
37 Badges
Oct 21, 2011
295
4
  • Stellaris: Nemesis
  • Stellaris: Distant Stars
  • A Game of Dwarves
  • Stellaris: Galaxy Edition
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Stellaris - Path to Destruction bundle
  • Stellaris: Synthetic Dawn
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Stellaris: Galaxy Edition
  • Stellaris: Megacorp
  • Stellaris: Ancient Relics
  • Stellaris: Lithoids
  • Stellaris: Federations
  • Crusader Kings III
  • Crusader Kings III: Royal Edition
  • Stellaris: Necroids
  • Stellaris: Galaxy Edition
  • Europa Universalis IV
  • Heir to the Throne
  • Europa Universalis IV: Call to arms event
  • Divine Wind
  • Europa Universalis III: Chronicles
  • Europa Universalis III
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Old Gods
  • Warlock: Master of the Arcane
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis IV: Pre-order
  • Stellaris
  • Age of Wonders III
  • Cities: Skylines - Parklife
  • Cities: Skylines
Hello,

My modded journal entry appears in the newly started games, however not in ongoing games. Is there a way to make it show up in existing saves?
 
There's a script condition/command to check whether a country has a journal entry, and to manually add an entry, respectively.
Code:
trigger = {
    NOT = {
        has_journal_entry = je_my_custom_journal_entry
    }
}

effect = {
    add_journal_entry = { type = je_my_custom_journal_entry }
}
You'll have to correctly place these in a decision or event or something to make it work, of course.