Hello, I'm quite new to the game. I recently found out about Abyssal space, and surveyed some of the planets I encountered.
Now, I can see it clearly saying I cannot colonize planets exactly because it's in deep abyssal space, but I was wondering if there's some way around this?
Maybe a mod, a code, anything really.
For reference, I'm trying to colonize a planet I spawned with a code in orbit around a black hole
runcode PlanetAPI star = ((StarSystemAPI) $loc).getStar(); $loc.addPlanet("cc_terranworld", star, "Terran world", "terran", VectorUtils.getAngle(star.getLocation(), $playerLoc), 250, MathUtils.getDistance(star.getLocation(), $playerLoc), 120)
I've been looking on any possible forum page and on other sites, but found no way to force colonization. If nothing works I guess I'd be ok even with colonizing a pre-existing planet.
Thanks in advance :D
you can remove the tags that block colonization from the system ("system_cut_off_from_hyper" and "system_abyssal")
but that still won't let you maintain a colony because those planets & systems just completely despawn after you go ~5ly away from them
I built a wormhole in the system so no it doesn't despawn (used this code to create a stable location)
runcode PlanetAPI star = ((StarSystemAPI) $loc).getStar(); $loc.addCustomEntity(null, null, "stable_location", "neutral").setCircularOrbitPointingDown(star, VectorUtils.getAngle(star.getLocation(), $playerLoc), MathUtils.getDistance(star.getLocation(), $playerFleet.getLocation()), 180f);
Where can I find the line you mention though?