• 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.
Oh boy, not good...
20190204180611_1.jpg

Not responding, huh? Riiiight.
20190204222321_1.jpg
 
Oh, what a nice and friendly Exterminator!
20190203194342_1.jpg

Presumably they would have been very friendly with other Machine Empires, but those were a Rogue Servitor, an Ancient Caretaker, and some pre-sapient primitve robots, and so the Executioner did, in fact, face those terrors alone
 
The first time I get the prescripted human empires in my galaxy and...
20190207151049_1.jpg

there are two Earths
 
I heard about hot plug, but this is ridiculous!
Network on a Sun.PNG
 
Dunno if I uploaded this one, but... yeah, barren. Right.
20181230120931_1.jpg
 
2019-02-10-50.png

I had two Aggressive Observation special projects trigger on the same planet. This was also where XCOM Anti-Alien Task Force spawned.

2019-02-10-57.png

Also, this is more funny than strange, but I encountered a fallen empire of dwarves on the other side of a wormhole.
 
Either that Valley is really isolated from Nuclear Winter....
truly isolated (2).jpg

Or my people just started finding cockroach analogues cute.
 
2.2.5 Beta

I had no idea that Fen Habbanis could have a wormhole to a mundane system.

Also I've found several ruined megastructures and haven't even finished exploring the galaxy. Ruined ringworld, mega art installation, matter decompressor, interstellar assembly and a sensor array.

tasty.png
 
I had no idea that Fen Habbanis could have a wormhole to a mundane system.

There's a rare event where a wormhole will be generated between two random systems.
 
2.2.5 Beta

I had no idea that Fen Habbanis could have a wormhole to a mundane system.

Also I've found several ruined megastructures and haven't even finished exploring the galaxy. Ruined ringworld, mega art installation, matter decompressor, interstellar assembly and a sensor array.

View attachment 449927
As Wormholes have to be spawned in pairs, it should not be possible.

And hte only event I know to spawn a Wormhole later is the one where you create a "Hyperspace bypass" by blowing up earth :)
 
A very exciting discovery for me. I have found Earth (Sol III), and it is populated with primitive Early Space Age Humans! It has taken me from Stellaris version 1.0 all the way to version 2.2.5, but I have finally found them! This may not seem remarkable, but this is the very first time I have found the Earth at this stage of development with actual Humans. My ME has now declared this system to be a national treasure. Do MEs even have national treasures?

*whisper* Don't tell the Humans that I'm going to shatter their planet in hopes that I will generate the fabled wormhole I have only heard rumors about.

aren'ttheycute.jpg
 
*whisper* Don't tell the Humans that I'm going to shatter their planet in hopes that I will generate the fabled wormhole I have only heard rumors about.
That event actually works on the Nuked and uninhabited earth. But having primitvie humans is just anotehr case:
Code:
# Hyperspace Bypass
planet_event = {
    id = planet_destruction.110
    hide_window = yes

    trigger = {
        solar_system = { has_star_flag = sol }
        from.owner = { NOT = { species_portrait = human } }
        OR = {
            has_planet_flag = planet_earth
            has_planet_flag = nuked_earth
            AND = {
                exists = owner
                owner = {
                    is_primitive = yes
                    species_portrait = human
                }
            }
        }
    }

    is_triggered_only = yes

    immediate = {
        random_list = {
            50 = { } # null
            50 = {
                solar_system = { save_event_target_as = sol_sys }
                from.owner = { country_event = { id = planet_destruction.111 } }
            }       
        }
    }
}