I want to make some extragalactic clusters which have wormhole exits that are not close to each other.
What's the best way to do so?
Can I chain distance limits? e.g.:
Or do I need to put a flag on every system within N jumps of the previous exits?
Or something else?
Thanks!
What's the best way to do so?
Can I chain distance limits? e.g.:
Code:
save_global_event_target_as = cluster_exit_01 # when creating wormhole #1
Code:
limit { # later, when creating exit #4
distance = { source = event_target:cluster_exit_01 min_jumps = 20 }
distance = { source = event_target:cluster_exit_02 min_jumps = 20 }
distance = { source = event_target:cluster_exit_03 min_jumps = 20 }
# ...
}
Or do I need to put a flag on every system within N jumps of the previous exits?
Or something else?
Thanks!