Is there any way to make buildable pops the same races as your player race. I'm wanting to make a robot race, but at the moment the starting robots and the built robots are considered a different race. Its kind of annoying.
This is the mod I presume you're thinking of - Playable RobotsThere is a build-able robots mod on steam. try seeing how they did it.
Is there any way to make buildable pops the same races as your player race.
AlphaAsh implemented precisely that: http://steamcommunity.com/sharedfiles/filedetails/?id=763070034
planet_event = {
id = clonedev.1
hide_window = yes
trigger = {
has_owner = yes
num_pops > 0
any_pop = {
is_species = CLONE_POP_MATURE
}
}
immediate = {
every_owned_pop = {
limit = {
is_species = CLONE_POP_MATURE
is_growing = no
}
kill_pop = yes
from = {
create_pop = {
species = owner_main_species
ethos = owner
}
}
}
}
}