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

Aethes

Private
85 Badges
Nov 24, 2012
23
17
  • Europa Universalis III
  • Heir to the Throne
  • Magicka
  • Divine Wind
  • Europa Universalis III Complete
  • Europa Universalis III: Chronicles
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Horse Lords
  • Hearts of Iron IV Sign-up
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Mount & Blade: Warband
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Conclave
  • Cities: Skylines - Snowfall
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Mare Nostrum
  • Stellaris
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Cities: Skylines - Natural Disasters
  • Hearts of Iron IV: Together for Victory
  • Crusader Kings II: Monks and Mystics
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Mandate of Heaven
  • Hearts of Iron IV: No Step Back
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: Jade Dragon
  • Cities: Skylines - Green Cities
  • Crusader Kings II: Sunset Invasion
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Cities: Skylines Deluxe Edition
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Hearts of Iron IV: Death or Dishonor
  • Victoria 2
  • Europa Universalis IV: Third Rome
  • Warlock: Master of the Arcane
  • 500k Club
Im trying to make a custom religion reformable but I couldnt manage to do so so far. What line exactly makes a religion reformable? And which file is it in?
 
Define the reformed religion before the un-reformed version in common/religions/00_religions.txt
Code:
custom_religion_reformed = {
#

       high_god_name = GOD_THE_GODS
      
       crusade_name = "HOLY_WAR"
       scripture_name = THE_LEGENDS
       priest_title = PRIEST
      
       god_names = {
           GOD_THE_PANTHEON
       }
       evil_god_names = {
           GOD_THE_DARK_HAND
       }
      
       priests_can_marry = no
       priests_can_inherit = no

       religious_clothing_head = 12
       religious_clothing_priest = 12
          
       allow_in_ruler_designer = no
}

custom_religion = {

       high_god_name = GOD_THE_GODS
      
       crusade_name = "HOLY_WAR"
       scripture_name = THE_LEGENDS
       priest_title = PRIEST
      
       god_names = {
           GOD_THE_PANTHEON
       }
       evil_god_names = {
           GOD_THE_DARK_HAND
       }
      

       reformed = old_gods_reformed

       priests_can_marry = no
       priests_can_inherit = no

       religious_clothing_head = 12
       religious_clothing_priest = 12
          
       allow_in_ruler_designer = no
}