Back to Index Page generated: May 8, 2024, 6:16:03 AM

Expansion Superhub for Extra Planets

Content

Warnings

  1. Required Expansions mismatch between OXP Manifest and Expansion Manager at character position 0077 (DIGIT ZERO vs LATIN SMALL LETTER N)
  2. No version in dependency reference to oolite.oxp.spara.additional_planets_sr_base:null
  3. No version in dependency reference to oolite.oxp.spara.additional_planets_sr_pack_redux:null
  4. No version in dependency reference to oolite.oxp.spara.stations_for_extra_planets:null
  5. No version in dependency reference to oolite.oxp.Pagroove.Superhub:null
  6. No version in dependency reference to oolite.oxp.Thargoid.Bigships:null
  7. Optional Expansions mismatch between OXP Manifest and Expansion Manager at character position 0062 (DIGIT ZERO vs LATIN SMALL LETTER N)

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Superhubs are built over some secondary planets also, in about every 5. systems as the main dock for big ships. Depends on Additional Planets, Stations for Extra Planets and Superhub. Superhubs are built over some secondary planets also, in about every 5. systems as the main dock for big ships. Depends on Additional Planets, Stations for Extra Planets and Superhub.
Identifier oolite.oxp.Norby.Superhub_for_Extra_Planets oolite.oxp.Norby.Superhub_for_Extra_Planets
Title Superhub for Extra Planets Superhub for Extra Planets
Category Dockables Dockables
Author Norby Norby
Version 1.2 1.2
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
  • oolite.oxp.spara.additional_planets_sr_base:0
  • oolite.oxp.spara.additional_planets_sr_pack_redux:0
  • oolite.oxp.spara.stations_for_extra_planets:0
  • oolite.oxp.Pagroove.Superhub:0
  • oolite.oxp.spara.additional_planets_sr_base:
  • oolite.oxp.spara.additional_planets_sr_pack_redux:
  • oolite.oxp.spara.stations_for_extra_planets:
  • oolite.oxp.Pagroove.Superhub:
  • Optional Expansions
  • oolite.oxp.Thargoid.Bigships:0
  • oolite.oxp.Thargoid.Bigships:
  • Conflict Expansions
    Information URL http://wiki.alioth.net/index.php/Superhub n/a
    Download URL https://wiki.alioth.net/img_auth.php/e/e2/SuperHUBForExtraPlanets-1.2.oxz n/a
    License CC-BY-NC-SA 4.0 CC-BY-NC-SA 4.0
    File Size n/a
    Upload date 1610873494

    Documentation

    Also read http://wiki.alioth.net/index.php/Superhub%20for%20Extra%20Planets

    Superhub_for_Extra_Planets_readme.txt

    Superhub for Extra Planets
    
    
    Superhubs are built over some secondary planets also, in about every 5. systems as the main dock for big ships.
    
    Contain 4 slightly different Superhubs.
    
    11% of additional planets will have a Superhub (4 of 36 station types). There are 2 additional planets in a system in average so about 56 systems have a secondary Superhub in a galaxy. Together with 10 Superhubs at main planets about every 4. system contain a Superhub. The chance of an extra Superhub is 8% if TL is below 10 (1 of 12 stations) and 12.5% from TL10 (3 of 24 startions).
    
    Depends on Additional Planets, Stations for Extra Planets and Superhub. 
    
    
    Instructions:
    
    Do not unzip the .oxz file, just move into the AddOns folder of your Oolite installation.
    
    License:
    
    This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License version 4.0.
    If you are re-using any piece of this OXP, please let me know by sending an e-mail to norbylite@gmail.com.
    
    
    Changelog:
     2020.10.04. v1.2  Fixed lack of subentity Dock in shipdata definitions, fixes the "unable to get docking clearance" bug (thanks to Nite Owl).
     2017.08.17. v1.1  Fixed a typo in sfep_market.js.
     2015.06.13. v1.0  First release.
    

    Equipment

    This expansion declares no equipment. This may be related to warnings.

    Ships

    Name
    Super Hub
    Super Hub I
    Super Hub II
    Super Hub III
    Super Hub IV

    Models

    This expansion declares no models. This may be related to warnings.

    Scripts

    Path
    Scripts/Superhub_for_Extra_Planets.js
    "use strict";
    this.name	= "Superhub_for_Extra_Planets";
    this.author	= "Norby";
    this.copyright	= "2015 Norby";
    this.description= "Superhubs are built over some secondary planets";
    this.licence	= "CC BY-NC-SA 4.0";
    
    //worldscript events
    this.startUp = function() {
    	var w = worldScripts.stations_for_extra_planets;
    	if( w ) {
    		w.$corStations.push("sfep_pag_superhub1");
    		w.$dodStations.push("sfep_pag_superhub2");
    		w.$icoStations.push("sfep_pag_superhub3");
    		w.$icoStations.push("sfep_pag_superhub4");
    	}
    }