In event 86160, "Encountering a rival on the hajj" it is pretty obvious that the intent was for the encounter to be with someone on hajj who has not yet arrived at Mecca who has a negative opinion of you. However, as written, the only people you can't encounter through this event are people who have positive opinions of you and who have arrived at Mecca (i.e., you can encounter someone with a negative opinion of you who has arrived at Mecca, or someone with a positive opinion of you who has not arrived at Mecca.)
Event as currently written:
The highlighted sections should be changed to either
or
Event as currently written:
Code:
#Encountering a rival on the hajj.
character_event = {
id = 86160
desc = "EVTDESC86160"
picture = GFX_evt_carriage
border = GFX_event_normal_frame_religion
prisoner = no
is_triggered_only = yes
trigger = {
trait = on_hajj
on_hajj = {
[COLOR="#FF0000"] NOT = {
has_character_flag = hajj_arrived_in_mecca
opinion = { who = ROOT value = 0 }
}
[/COLOR] }
}
immediate = {
on_hajj = {
limit = {
prisoner = no
[COLOR="#FF0000"] NOT = {
has_character_flag = hajj_arrived_in_mecca
opinion = { who = ROOT value = 0 }
}
[/COLOR] }
set_character_flag = hajj_rival
}
}
option = {
name = "EVTOPTA86160" #Attack him!
piety = -10
on_hajj = {
limit = {
prisoner = no
has_character_flag = hajj_rival
}
opinion = {
modifier = opinion_hajj_attempt_murder
who = ROOT
}
character_event = { id = 86161 tooltip = "EVTTOOLTIP86161" }
}
}
option = {
name = "EVTOPTB86160" #Attempt befriend
on_hajj = {
limit = {
prisoner = no
has_character_flag = hajj_rival
}
character_event = { id = 86165 tooltip = "EVTTOOLTIP86165" }
}
}
option = {
name = "EVTOPTC86160"
prestige = -10
}
}
The highlighted sections should be changed to either
Code:
NOT = {
OR = {
has_character_flag = hajj_arrived_in_mecca
opinion = { who = ROOT value = 0 }
}
}
Code:
NOT = {
has_character_flag = hajj_arrived_in_mecca
}
NOT = {
opinion = { who = ROOT value = 0 }
}
Upvote
0