i am unable to have my oracle grant invasions, the option is not visible when I go to dilpomacy
I believe invasions are only available to other people of the same faith as you and your head of religion grants you the right to invade if they are excommed and ur smaller...
the odds of that actualy happening is tiny, since you're the god-king!
What you probably do want to have enabled is the crusades, which can be easily modded if you know where to look. I did a rather sloppy copy paste and ripping job from my personal project to create this vanilla version. I forgot I had to add the casus bellis for the crusades. It is in the official version, but like I said, sloppy rip job.
If you want to enable them... add the original casus belli file to the mod directory and edit it like this:
Code:
muslim_invasion = {
name = CB_NAME_INVASION
war_name = WAR_NAME_INVASION
sprite = 8
truce_days = 3650
hostile_against_others = yes
is_permanent = yes
can_ask_to_join_war = no
check_de_jure_tier = KING # this scans all de jure kingdoms for the counties which are held by or vassals(or below) of selected character. Only valid if is_permanent = yes
can_use = {
ROOT = {
OR = {
religion_group = muslim
religion = war_pagan
}
piety = 500
}
NOT = {
# These use 'tribal_invasion' instead:
ROOT = {
OR = {
AND = {
primary_title = { is_tribal_type_title = yes }
has_horde_culture = yes
}
AND = {
mercenary = yes
NOT = {
num_of_titles = 2
}
}
}
}
}
FROM = { NOT = { religion = ROOT } }
ROOT = {
NOT = { is_liege_or_above = FROM }
}
}
can_use_title = {
# Muslims require the target to have at least 6 counties within the target kingdom
FROM = {
num_of_realm_counties = {
value = 6
title = PREV
}
}
}
is_valid_title = {
FROM = {
any_realm_title = {
de_jure_liege_or_above = PREVPREV
}
}
}
on_add = {
ROOT = { piety = -500 }
}
on_success = {
ROOT = {
prestige = 200
}
any_attacker = {
limit = { character = ROOT }
participation_scaled_prestige = 200
if = {
limit = {
religion_group = muslim
FROM = { NOT = { religion_group = muslim } }
}
participation_scaled_decadence = -20
}
}
any_attacker = {
limit = { NOT = { character = ROOT } }
hidden_tooltip = {
participation_scaled_prestige = 200
if = {
limit = {
religion_group = muslim
FROM = { NOT = { religion_group = muslim } }
}
participation_scaled_decadence = -20
}
}
}
FROM = {
prestige = -200
}
}
on_success_title = {
custom_tooltip = tribal_invasion_succ_tip
hidden_tooltip = {
ROOT = {
vassalize_or_take_under_title = {
title = PREV
enemy = FROM
is_crusade = yes # Even if the title holder is not participating in the war, gain holdings occupied by all Crusade participants
}
}
}
}
on_fail = {
FROM = {
prestige = 100
}
FROM = {
if = {
limit = {
has_dlc = "Legacy of Rome"
OR = {
has_landed_title = e_byzantium
has_landed_title = e_roman_empire
}
religion_group = christian
}
hidden_tooltip = { character_event = { id = LoR.30 days = 12 } }
}
}
any_defender = {
limit = { character = FROM }
participation_scaled_prestige = 100
}
any_defender = {
limit = { NOT = { character = FROM } }
hidden_tooltip = { participation_scaled_prestige = 100 }
}
ROOT = {
prestige = -200
}
}
on_reverse_demand = {
ROOT = {
prestige = -200
transfer_scaled_wealth = {
to = FROM
value = 4.0
}
decadence = 10
}
FROM = {
prestige = 200
}
FROM = {
if = {
limit = {
has_dlc = "Legacy of Rome"
OR = {
has_landed_title = e_byzantium
has_landed_title = e_roman_empire
}
religion_group = christian
}
hidden_tooltip = { character_event = { id = LoR.30 days = 12 } }
}
}
any_defender = {
limit = { character = FROM }
participation_scaled_prestige = 200
}
any_defender = {
limit = { NOT = { character = FROM } }
hidden_tooltip = { participation_scaled_prestige = 200 }
}
}
attacker_ai_victory_worth = {
factor = 100
}
attacker_ai_defeat_worth = {
factor = 100
}
defender_ai_victory_worth = {
factor = -1 # always accept
}
defender_ai_defeat_worth = {
factor = 150
}
}
As you can see, you only need to change one condition, by adding the possibility for either muslims OR war pagans.
Code:
OR = {
religion_group = muslim
religion = war_pagan}
You can invade the entire world with that casus belli...