Difference between revisions of "Stations for Extra Planets"

From Elite Wiki
(Added pictures. Tagged as making game easier. Updated a couple of links.)
(Addon: Station spotter oxp: Added more)
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
[[File:Waspline.jpg|thumb|right|300px|Waspline Coriolis]]
 
[[File:Waspline.jpg|thumb|right|300px|Waspline Coriolis]]
 
[[File:Zieman's Habitat Station.png|thumb|right|300px|Zieman's Habitat]]
 
[[File:Zieman's Habitat Station.png|thumb|right|300px|Zieman's Habitat]]
 +
[[File:Trade Outpost snap shot.png|thumb|right|300px|Trade Outpost]]
 
==Story==
 
==Story==
 
Ooniverse is a multiverse. In each parallel reality there is a set of stations that seem to change from time to time when new stations are manufactured and shipped. Especially after Griff's X2 stations were rolled out, a lot of the old stations that were still very much functional were now discarded.
 
Ooniverse is a multiverse. In each parallel reality there is a set of stations that seem to change from time to time when new stations are manufactured and shipped. Especially after Griff's X2 stations were rolled out, a lot of the old stations that were still very much functional were now discarded.
Line 31: Line 32:
  
 
This oxp was originally written for [[System Redux (Oolite)]]. Nowadays (2021) it works with the [[Additional Planets]] suite of oxps.
 
This oxp was originally written for [[System Redux (Oolite)]]. Nowadays (2021) it works with the [[Additional Planets]] suite of oxps.
* [http://aegidian.org/bb/viewtopic.php?f=4&t=14314 Station Validator] oxp
+
* [[Station Validator]] oxp
 
* [[New_Cargoes|New Cargoes]] oxp
 
* [[New_Cargoes|New Cargoes]] oxp
 
* [[BGS|BGS - Background Set]] oxp
 
* [[BGS|BGS - Background Set]] oxp
Line 38: Line 39:
  
 
'''Station spotter''' adds a mini game of "collect 'em all" to Oolite. It keeps track of your visits to different stations added to the game by this oxp. You can review your spottings from the ship interfaces screen (f4). Station spotter.oxp requires the main .oxp to work. This Addon is bundled to the zip file.
 
'''Station spotter''' adds a mini game of "collect 'em all" to Oolite. It keeps track of your visits to different stations added to the game by this oxp. You can review your spottings from the ship interfaces screen (f4). Station spotter.oxp requires the main .oxp to work. This Addon is bundled to the zip file.
 +
 +
The stations which you have visited will either be added to the "View ship specifications" library (under Ship Systems) or to "Station Spotter" (under Statistical).
 +
 +
For an example of the second see [https://www.youtube.com/watch?v=AUhFCSJyFf8&list=PLRNUEKviDIzGsLK3LpY8HOHVm9bV1z5bC&index=8 Exploring the Ooniverse #8: Orbital Graveyard] at 19:02 (Zed's YouTube channel, 2016).
 +
 +
== Tweaks ==
 +
code TWEAK to allow Stations for Extra Planets to appear above Gas Giants so that there is a more compelling reason to view their wonderful textures.
 +
 +
//add station to planets with atmosphere and gas giants (gas giants is my TWEAK)
 +
if (worldScripts["stations_for_extra_planets"])
 +
//TWEAK -  was if (worldScripts["stations_for_extra_planets"] && !giant) - done so that gas giants might have a reason to be visited
 +
 +
The OXZ being TWEAKED here is ''oolite.oxp.spara.additional_planets_sr_base.oxz'' version 0.8. The file is '''script.js''' in the '''config''' folder. Line number 225 according to Notepad++. Enjoy. [http://aegidian.org/bb/viewtopic.php?p=283380#p283380 Nite Owl (2022)]
 +
  
 
==Requirements==
 
==Requirements==
Line 44: Line 59:
 
* For SfEP version 2.0, Additional Planets oxp from the expansion manager.
 
* For SfEP version 2.0, Additional Planets oxp from the expansion manager.
 
* For SfEP version 1.6, an oxp that adds extra planets. For example [[System Redux (Oolite)|System Redux]] oxp by CaptKev & Kaks.
 
* For SfEP version 1.6, an oxp that adds extra planets. For example [[System Redux (Oolite)|System Redux]] oxp by CaptKev & Kaks.
 +
 +
[[File:IconBGS.png|right]]
 +
*BGS enhances this oxp
  
 
==Download==
 
==Download==

Revision as of 22:27, 5 February 2023

Worldranger station
Waspline Coriolis
Zieman's Habitat
Trade Outpost

Story

Ooniverse is a multiverse. In each parallel reality there is a set of stations that seem to change from time to time when new stations are manufactured and shipped. Especially after Griff's X2 stations were rolled out, a lot of the old stations that were still very much functional were now discarded.

In some realities there is more than one planet in a system. Those planets are pretty to look at, but they are not visited as often as the residents would like to. Those planets desperately need some attractions to lure visitors.

So we have a bunch of unused stations and bunch of planets in need of attraction! In an effort to preserve those fine stations and to add some attraction to those far away planets each planet has been awarded a station.

Now there are more options for traders to make profit and more sights for tourists to behold.

Overview

This OXP adds stations to secondary planets with atmosphere. Stations used are collaged from:

These are included in the oxp. You don't need to download and install them separately. They have also been updated from the originals, with, for example, Market Inquirer compatibility built in.

Recommended/Supported oxps

This oxp was originally written for System Redux (Oolite). Nowadays (2021) it works with the Additional Planets suite of oxps.

Addon: Station spotter oxp

Station spotter adds a mini game of "collect 'em all" to Oolite. It keeps track of your visits to different stations added to the game by this oxp. You can review your spottings from the ship interfaces screen (f4). Station spotter.oxp requires the main .oxp to work. This Addon is bundled to the zip file.

The stations which you have visited will either be added to the "View ship specifications" library (under Ship Systems) or to "Station Spotter" (under Statistical).

For an example of the second see Exploring the Ooniverse #8: Orbital Graveyard at 19:02 (Zed's YouTube channel, 2016).

Tweaks

code TWEAK to allow Stations for Extra Planets to appear above Gas Giants so that there is a more compelling reason to view their wonderful textures.

//add station to planets with atmosphere and gas giants (gas giants is my TWEAK)
		if (worldScripts["stations_for_extra_planets"]) 
//TWEAK -  was if (worldScripts["stations_for_extra_planets"] && !giant) - done so that gas giants might have a reason to be visited

The OXZ being TWEAKED here is oolite.oxp.spara.additional_planets_sr_base.oxz version 0.8. The file is script.js in the config folder. Line number 225 according to Notepad++. Enjoy. Nite Owl (2022)


Requirements

  • Oolite 1.84
  • For SfEP version 2.0, Additional Planets oxp from the expansion manager.
  • For SfEP version 1.6, an oxp that adds extra planets. For example System Redux oxp by CaptKev & Kaks.
IconBGS.png
  • BGS enhances this oxp

Download

  • Download the latest version from the expansion pack manager in the game.
  • Download version 1.6 for Oolite 1.77.1 from the box.

Installing

Install the OXP by copying stations_for_extra_planets.oxp to your AddOns-folder.

Credits

  • Models, shaders and textures for the stations are from Ark, CaptKev, CaptSolo, Captain Beatnik, DeepSpace, Dertien, Griff, Murgh, PAGroove, Simon B, Smivs, Svengali and Zieman. Original readmes are in the Readmes folder.
  • Textures corrected by Tichy.

Quick Facts

Version Released License Features Category Author(s) Feedback
2.0 2017-01-30 CC BY-NC-SA 4.0 Stations Dockables OXPs Spara Oolite BB

Gameplay and Balance indicator

Tag-colour-blue.png

The extra markets increase the potential for profit - especially if one adds in Market Inquirer, allowing one to compare market prices across the solar system.