Hail, everybody!
Stuck at getting that Holy Grail artifact. Help me, please, as it buggers me off.
As people say and game-files prove you need to capture the barony of Caesarea during a crusade, which targets that barony realm. AI did build Caesarea (it does not appear in 769) and I siege it multiple times during the 2nd Crusade. But no Grail for me...
The Lance of Longinus, that is aquired similarily, I managed to capture from Jerusalem during the 1st Crusade.
What am I missing, guys? Noone else got that Grail before me - I checked the character finder thoroughly.
Here is a script from the crusade_events.txt
Stuck at getting that Holy Grail artifact. Help me, please, as it buggers me off.
As people say and game-files prove you need to capture the barony of Caesarea during a crusade, which targets that barony realm. AI did build Caesarea (it does not appear in 769) and I siege it multiple times during the 2nd Crusade. But no Grail for me...
The Lance of Longinus, that is aquired similarily, I managed to capture from Jerusalem during the 1st Crusade.
What am I missing, guys? Noone else got that Grail before me - I checked the character finder thoroughly.
Here is a script from the crusade_events.txt
# Finds the Holy Grail
# on_siege_won_leader
# FROM = barony won
character_event = {
id = 8342
desc = "EVTDESC8342"
picture = "GFX_evt_siege"
border = GFX_event_normal_frame_war
is_triggered_only = yes
religion = catholic
trigger = {
FROM = { title = b_syrcaesarea }
OR = {
any_war = {
using_cb = crusade
}
any_liege = {
any_war = {
using_cb = crusade
}
}
}
NOT = { has_global_flag = found_the_holy_grail }
}
immediate = {
hidden_tooltip = {
set_global_flag = found_the_holy_grail
}
}
option = {
name = "EVTOPTA8342"
prestige = 200
if = {
limit = { has_dlc = Mystics }
if = {
limit = {
OR = {
has_game_rule = {
name = supernatural_events
value = on
}
has_game_rule = {
name = supernatural_events
value = unrestricted
}
}
}
add_artifact = holy_grail
new_artifact = {
set_creation_date = 1.1.1
}
}
if = {
limit = {
has_game_rule = {
name = supernatural_events
value = off
}
}
add_artifact = holy_chalice
new_artifact = {
set_creation_date = 1.1.1
}
}
}
}
}
# on_siege_won_leader
# FROM = barony won
character_event = {
id = 8342
desc = "EVTDESC8342"
picture = "GFX_evt_siege"
border = GFX_event_normal_frame_war
is_triggered_only = yes
religion = catholic
trigger = {
FROM = { title = b_syrcaesarea }
OR = {
any_war = {
using_cb = crusade
}
any_liege = {
any_war = {
using_cb = crusade
}
}
}
NOT = { has_global_flag = found_the_holy_grail }
}
immediate = {
hidden_tooltip = {
set_global_flag = found_the_holy_grail
}
}
option = {
name = "EVTOPTA8342"
prestige = 200
if = {
limit = { has_dlc = Mystics }
if = {
limit = {
OR = {
has_game_rule = {
name = supernatural_events
value = on
}
has_game_rule = {
name = supernatural_events
value = unrestricted
}
}
}
add_artifact = holy_grail
new_artifact = {
set_creation_date = 1.1.1
}
}
if = {
limit = {
has_game_rule = {
name = supernatural_events
value = off
}
}
add_artifact = holy_chalice
new_artifact = {
set_creation_date = 1.1.1
}
}
}
}
}