Editing planets

Love Joy

Chieftain
Joined
Apr 18, 2010
Messages
9
HI :king:

How can I change planets, here on this game.
I change the configurations using notepad++ making my solar system look Solar system-like.
I place venus, earth, mars, 2 gas planets, pluto and eris.

BUT When I start the worldbuildersave my solar system I changed and saved using notepad its totally random again.


Is there any way I can do it permenantly? So that the changes would stay after loading the wouldbuildersave???


Its always nicer to star off with OUR solar system and not with something that has for example 2 big gas planets in the first 2 slots :))
 
I seem to remember the Star Trek mod had some problems with Final Frontier's default method of identifying Worldbuilder Saves and so it used this method instead:

Code:
		# Is this a scenario file?
		if (CyMap().plot(0,0).getScriptData() == "Scenario"):

To get your new WBS to be properly loaded, you would need to change the first plot data entry to look like this:

Code:
BeginPlot
	x=0,y=0
	ScriptData=Scenario
	TerrainType=TERRAIN_TUNDRA
	PlotType=2
	TeamReveal=0,1,2,3,
EndPlot

That is, add the line "ScriptData=Scenario" to it.
 
Back
Top Bottom