As title said, I want to spawn certain tile blocker on my colony for mod testing.
Is there any console that does this?
Is there any console that does this?
namespace = mod_testevents
planet_event = {
id = mod_testevents.1
hide_window = yes
is_triggered_only = yes
immediate = {
random_tile = {
limit = {
AND = {
has_building = no
has_pop = no
}
}
if = {
limit = { has_blocker = yes }
remove_blocker = yes
}
set_blocker = tb_your_mod_tileblocker # replace this with your custom tileblocker
}
}
}