• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

yummer123

Recruit
Aug 28, 2022
2
0
Hi, new here. I am trying to survey (or unsurvey) any planet with one science ship in the solar system, here is what I have tried so far:

I select a planet open the console and type this:

effect set_surveyed={surveyed=yes surveyor=random_ship_in_system.owner}

But no luck the planet wont be surveyed...

Anyone knows what I am doing wrong?
 
Hi, new here. I am trying to survey (or unsurvey) any planet with one science ship in the solar system, here is what I have tried so far:

I select a planet open the console and type this:

effect set_surveyed={surveyed=yes surveyor=random_ship_in_system.owner}

But no luck the planet wont be surveyed...

Anyone knows what I am doing wrong?
Thanks to @Wymorlon

With a fleet event like this:
Code:
fleet_event = {
    id = planet_destruction2.3
    is_triggered_only = yes
    hide_window = yes

    immediate = {
        solar_system = {
            every_system_planet = {
                set_surveyed = {
                    surveyed = no
                    surveyor = root.owner
                }
            }
        }
    }
}
It can be done, thought it doesnt work with owned systems...