Main station variety

General discussion for players of Oolite.

Moderators: winston, another_commander

User avatar
Cholmondely
Archivist
Archivist
Posts: 6168
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Main station variety

Post by Cholmondely »

Captain Beatnik did a lot of imagining around Riredi.

See Sector1/Riredi for a selection of his lore and links to the rest.




There are equivalents in Lave, Tionisla (TOGY & TCA: 6 OXPs - did you explore much there?), Tianve (1 OXP) and Lerelace (needs the Taranis OXP). DGill's Feudal States OXP Suite does something with the lore for Digebiti, Aronar & Tibecea (especially Tibecea). Also Aruszati (with Rescue Stations OXP). And [EliteWiki] Jaguar Company hides stations in some dangerous systems. As does [EliteWiki] HIMSN (but in a mere handful dotted across the Eight).

I'd love to do more for Digebiti but lack the skills. Daddyhoggy had hopes for Sector1/Teorge and Alnivel had hopes for Sector1/Zarece but got clobbered by ex-comrade Putin.



See [EliteWiki] Exploration for the other galaxies.



If you decide to start again with a new [EliteWiki] Jameson, you could have a bash with [EliteWiki] Hermitage (take the "easy start" in Rexebe) and add in [EliteWiki] Diplomancy, Phkb's "Rexebe Citizen" & [wiki]Mandotech Station & Shipyards[/wiki].
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
Bicorn
Dangerous
Dangerous
Posts: 86
Joined: Wed Jun 18, 2025 8:47 am

Re: Main station variety

Post by Bicorn »

I kind of wonder though why the Riredi OXP makes the nebulae in the sky look so different from everywhere else. (I assume it's the one doing it, at least.) I don't necessarily dislike them, but it's a bit noticeable when you jump in from a neighbouring system and suddenly the sky is completely different.
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 5238
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: Main station variety

Post by phkb »

Bicorn wrote: Sat Jul 05, 2025 1:26 am
I kind of wonder though why the Riredi OXP makes the nebulae in the sky look so different from everywhere else.
I think the answer is right there. To make the system look different to everywhere else.
Bicorn
Dangerous
Dangerous
Posts: 86
Joined: Wed Jun 18, 2025 8:47 am

Re: Main station variety

Post by Bicorn »

phkb wrote: Sat Jul 05, 2025 2:03 am
Bicorn wrote: Sat Jul 05, 2025 1:26 am
I kind of wonder though why the Riredi OXP makes the nebulae in the sky look so different from everywhere else.
I think the answer is right there. To make the system look different to everywhere else.
Yeah, but nebulae are the sort of thing that's visible from interstellar distances. It feels weird that you can see them there but not at the neighbouring systems.
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 5238
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: Main station variety

Post by phkb »

You can tweak the numbers if you want. In the planetinfo.plist file, the entries you want to play with are:

Code: Select all

        sky_blur_cluster_chance = 0.80; // chance of adding nebula
        sky_blur_scale = 10; // size of nebula created
        sky_n_blurs = 600; // defines how many nebula to create (normal is around 80)
The last one is quite elevated over normal.
Bicorn
Dangerous
Dangerous
Posts: 86
Joined: Wed Jun 18, 2025 8:47 am

Re: Main station variety

Post by Bicorn »

phkb wrote: Sat Jul 05, 2025 2:19 am
You can tweak the numbers if you want. In the planetinfo.plist file, the entries you want to play with are:

Code: Select all

        sky_blur_cluster_chance = 0.80; // chance of adding nebula
        sky_blur_scale = 10; // size of nebula created
        sky_n_blurs = 600; // defines how many nebula to create (normal is around 80)
The last one is quite elevated over normal.
Mm, I'm using the manager version, though. Is it possible to override parts of a managed add-on so I don't need to re-tweak whenever there's an update?
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 5238
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: Main station variety

Post by phkb »

You could try creating a planetinfo.plist file in your AddOns folder (probably create a subfolder called "ZZ_MyTweaks.oxp" or something like that to try and force it to load last). Add a "Config" folder, and put the file in there.
The content would look like this:

Code: Select all

{
	"0 210" = {
	        sky_blur_cluster_chance = 0.80;
        	sky_blur_scale = 10;
	        sky_n_blurs = 600;
	};
}
That should work in you keep the Riredi.OXP as a managed addons. I think. Maybe. YMMV. :D
Bicorn
Dangerous
Dangerous
Posts: 86
Joined: Wed Jun 18, 2025 8:47 am

Re: Main station variety

Post by Bicorn »

phkb wrote: Sat Jul 05, 2025 3:16 am
You could try creating a planetinfo.plist file in your AddOns folder (probably create a subfolder called "ZZ_MyTweaks.oxp" or something like that to try and force it to load last). Add a "Config" folder, and put the file in there.
The content would look like this:

Code: Select all

{
	"0 210" = {
	        sky_blur_cluster_chance = 0.80;
        	sky_blur_scale = 10;
	        sky_n_blurs = 600;
	};
}
That should work in you keep the Riredi.OXP as a managed addons. I think. Maybe. YMMV. :D
I'll give it a try!
User avatar
Wildeblood
---- E L I T E ----
---- E L I T E ----
Posts: 2790
Joined: Sat Jun 11, 2011 6:07 am
Location: Nova Hollandia
Contact:

Re: Main station variety

Post by Wildeblood »

phkb wrote: Sat Jul 05, 2025 3:16 am
You could try creating a planetinfo.plist file in your AddOns folder (Read what the sensible man below suggests. probably create a subfolder called "ZZ_MyTweaks.oxp" or something like that to try and force it to load last). Add a "Config" folder, and put the file in there.
The content should look like this:

Code: Select all

{
	"0 210" = {
		layer = 2;
	        sky_blur_cluster_chance = 0.80;
        	sky_blur_scale = 10;
	        sky_n_blurs = 600;
	};
}
That should work if you keep the Riredi.OXP as a managed addon.
"Must keep this response efficient to preserve remaining context."
Post Reply