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

grisamentum

Field Marshal
93 Badges
Feb 29, 2012
6.530
1.202
  • Humble Paradox Bundle
  • Crusader Kings II: Sunset Invasion
The event to become a faqih (an Islamic legal scholar) requires not having Way of Life:

Code:
character_event = {
	id = 5080
	desc = "EVTDESC5080"
	picture = GFX_evt_shadowy_cabal
	
	min_age = 25
	capable_only = yes
	prisoner = no
	
	trigger = {
[b]		NOT = { has_dlc = "Way of Life" }[/b]
		in_command = no
		religion_group = muslim
		NOT = {
			has_character_modifier = aspiring_faqih
		}
		NOT = {
			has_character_flag = LE_ST
		}
		NOT = {
			has_character_flag = aspiring_faqih_flag
		}
		NOT = {
			lifestyle_traits = 1
		}
		NOT = {
			trait = hafiz
		}
		NOT = {
			trait = inbred
		}
		NOT = {
			trait = slow
		}
		NOT = {
			trait = infirm
		}
	}

However there is no equivalent event for people who do have Way of Life. I thought it would be under scholarship events or something at least. But it isn't. Basically this is just content that has been completely removed if Way of Life is turned on.

Ideally you would write events for WoL's scholarship focus that Muslim characters would use to be come faqih, but barring that, why not just change

Code:
NOT = { has_dlc = "Way of Life" }

to

Code:
OR = {
		has_focus = focus_scholarship
		NOT = { has_dlc = "Way of Life" }
	}

Also, I'd note that you guys left the opposing trait, hafiz, enabled for non-WoL owners, and WoL players with any lifestyle focus:

Code:
character_event = {
	id = 1070
	desc = "EVTDESC1070"
	picture = GFX_evt_monk
	border = GFX_event_normal_frame_religion
	
	min_age = 16
	capable_only = yes
	prisoner = no
	
	is_triggered_only = yes
	
	trigger = {
		NOT = {
			personality_traits = 5
		}
		religion_group = muslim
		NOT = {
			trait = hafiz
		}
		NOT = {
			trait = inbred
		}
		NOT = {
			trait = slow
		}
		NOT = {
			trait = infirm
		}
	}

So it seems a little silly that Muslims are still permitted to become hafiz but not faqih.
 
Upvote 0