Random Planet Teleporter


Teleports the player to a random planet every 5 minutes.

Content
10 months ago
2.0
254
Factorio: Space Age Icon Space Age Mod
Transportation Cheats

g Only base planets

8 months ago

Hi, will this only teleport you to the 5 2.0 planets or would it also teleport you if you installed a bunch of planet mods?

8 months ago

Unfortunately, base only

5 days ago

I managed to open up the code and create a version that would be able to teleport you to any planet mod,

Unfortunately this isn't optimal as most planet mods expect the research for said planet to be Done, which means for most they become effectively aquillo with zero reason to be there, as i cant yet find a good way to extend the force research to modded planets without individual compatibilities for each one.

I can attach the code here. it just replaces the previous hardcoded array. Its a nice solution to me. but theres not a good equivalent for the technology as far as i know yet.

local planets = {}--Declare planets, leave empty

--Populates array with every planet,
for key, value in pairs(game.planets) do
    planets[#planets + 1] = { name = key }
end

New response