I checked out the save and the proper star system exist and has the legendary_leader_spawn_system flag. There exists an exakeides_planet event target. There's a legendary_leader_meet_point flag on the planet. But there is no spawn_point_legendary_leader event target.
And the event that's supposed to trigger when you first enter the system has this:
Code:
immediate = {
FROM = {
random_system_planet = {
limit = { has_planet_flag = legendary_leader_meet_point }
save_event_target_as = spawn_point_legendary_leader
}
}
}
So if you have entered the Dugar system, something must be interfering with the triggering event that starts the Keides story, but I don't know what. Normally I'd guess it's a mod, but you're doing an achievement run, so presumably you don't have any active.
For reference, this is the full triggering event:
Code:
ship_event = { #Distress Signal
id = paragon.3100
title = "paragon.3100.name"
desc = "paragon.3100.desc"
picture = GFX_evt_frozen
show_sound = event_finding_loot
location = event_target:exakeides_planet
is_triggered_only = yes
trigger = {
FROM = { has_star_flag = legendary_leader_spawn_system }
NOT = { has_global_flag = frozen_legendary_leader_found }
exists = event_target:exakeides_planet
}
immediate = {
FROM = {
random_system_planet = {
limit = { has_planet_flag = legendary_leader_meet_point }
save_event_target_as = spawn_point_legendary_leader
}
}
}
option = {
name = paragon.3100.a
owner = {
enable_special_project = {
name = "LEGENDARY_LEADER_FIRST_PROJECT"
location = event_target:spawn_point_legendary_leader
owner = this
}
}
}
option = {
name = paragon.3100.b
}
}
And all the conditions from the trigger are met. There is a NAME_legendary_crash_site system in the save (Dugar). It has the legendary_leader_spawn_system flag. There is no frozen_legendary_leader_found global flag. And there exists the event target exakeides_planet. So the immediate block should have triggered and saved Dugar IV as the event target spawn_point_legendary_leader. But that event target does not exist in the save.