In event RoI.504, under roi_various_events:
Paying more in the earlier events sets helped_marco_polo_lots, allowing the better rewards here. But the lesser reward is still visible in this case, giving the player a choice between two options which both say "Come, tell me tales of the East, my friends...", one giving more prestige and wealth than the other.
The second option should clearly have a trigger
Code:
# The Polos return
character_event = {
id = RoI.504
desc =*EVTDESC_RoI_504
picture = GFX_evt_emissary
is_triggered_only = yes
option = {
name = EVTOPTA_RoI_504
trigger = {
has_character_flag = helped_marco_polo_lots
}
scaled_wealth = 0.3
prestige = 50
change_learning = 1
}
option = {
name = EVTOPTA_RoI_504
scaled_wealth = 0.1
prestige = 20
change_learning = 1
}
}
The second option should clearly have a trigger
Code:
trigger = {
NOT = { has_character_flag = helped_marco_polo_lots }
}
Upvote
0