AFAIK, there is no event that removes the crusader trait once one has taken the cross. However, I think it should be possible to end a 'personal' crusade once Jerusalem has been liberated. Therefore I want to script an event that gives the possibility to remove the crusader trait when one either holds Jerusalem, or the KoJ title.
This is version:
And the lines for event_text.csv:
How does it look?
EDITED 23-07-04
This is version:
Code:
#####################################
#You have fulfilled your vow to god #
#####################################
character_event = {
id = 66669
name = "You have fulfilled your vow to god"
picture = "event_crusades"
trigger = {
condition = { type = religion value = catholic } #Is catholic
condition = { type = trait value = crusader } #Is crusader
condition = {
type = or #Has important holdings in the holy land
condition = { type = title value = C774 } #Jerusalem
condition = { type = title value = JERU } #Has KoJ
condition = { type = title value = C728 } #Damascus
condition = { type = title value = C733 } #Aleppo
condition = { type = title value = C772 } #Acre
condition = { type = title value = C796 } #Cairo
condition = { type = title value = C802 } #Alexandria
}
condition = { type = piety value = 2000} #Has done some crusading himself
condition = { #must be at peace
type = not
value = {
type = atwar
}
}
}
mean_time_to_happen = {
months = 36
modifier = {
condition = {
type = not
value = {
type = or
condition = { type = title value = C774 }
condition = { type = title value = JERU }
}
}
factor = 5
}
}
action_a = { #I will rest my sword
ai_chance = 75
effect = { type = remove_trait value = crusader }
effect = { type = piety value = -150 }
effect = { type = random
chance = 25
effect = { type = remove_trait value = zealous }
}
}
action_b = { #There are still heathens to conquer
ai_chance = 25
effect = { type = add_trait value = zealous }
}
}
And the lines for event_text.csv:
Code:
ACTIONNAME66669A;I will rest my sword;;;;;;;;;;X
ACTIONNAME66669B;There are still heathens to conquer;;;;;;;;;;X
How does it look?
EDITED 23-07-04
Last edited: