Back to Index Page generated: Jun 25, 2025, 7:13:19 AM

Expansion Rough Guide to the Ooniverse

Content

Warnings

  1. Required Expansions mismatch between OXP Manifest and Expansion Manager at character position 0062 (DIGIT ZERO vs LATIN SMALL LETTER N)
  2. No version in dependency reference to oolite.oxp.cim.ships-library:null

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Adds the 'Rough Guide to the Ooniverse' to the Ship's Library Adds the 'Rough Guide to the Ooniverse' to the Ship's Library
Identifier oolite.oxp.phkb.RoughGuideToTheOoniverse oolite.oxp.phkb.RoughGuideToTheOoniverse
Title Rough Guide to the Ooniverse Rough Guide to the Ooniverse
Category Ambience Ambience
Author phkb phkb
Version 1.0 1.0
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
  • oolite.oxp.cim.ships-library:0
  • oolite.oxp.cim.ships-library:
  • Optional Expansions
    Conflict Expansions
    Information URL https://wiki.alioth.net/index.php/Rough_Guide_to_the_Ooniverse n/a
    Download URL https://wiki.alioth.net/img_auth.php/2/25/RoughGuide.oxz n/a
    License CC-BY-SA 4.0 CC-BY-SA 4.0
    File Size n/a
    Upload date 1748330386

    Documentation

    Also read http://wiki.alioth.net/index.php/Rough%20Guide%20to%20the%20Ooniverse

    Equipment

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

    Ships

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

    Models

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

    Scripts

    Path
    Config/script.js
    "use strict";
    this.name = "RoughGuide";
    this.author = "phkb";
    this.description = "Adds the Rough Guide to the Ooniverse to the Ship's Library";
    this.version = "1.0";
    
    //-------------------------------------------------------------------------------------------------------------
    this.startUpComplete = function() {
        this._registerRoughGuide();
    }
    
    //-------------------------------------------------------------------------------------------------------------
    this._registerRoughGuide = function() {
    	var contents = [
    		{level: 0, key: "roughguide_intro"},
    		{level: 1, key: "roughguide_aesbion"},
    		{level: 1, key: "roughguide_aronar"},
    		{level: 1, key: "roughguide_beusrior"},
    		{level: 1, key: "roughguide_isence"},
    		{level: 1, key: "roughguide_isinor"},
    		{level: 1, key: "roughguide_laenin"},
    		{level: 1, key: "roughguide_lave"},
    		{level: 1, key: "roughguide_qutiri"},
    		{level: 1, key: "roughguide_reinen"},
    		{level: 1, key: "roughguide_reorte"},
    		{level: 1, key: "roughguide_riedquat"},
    		{level: 1, key: "roughguide_tianve"},
    		{level: 1, key: "roughguide_tibecea"},
    		{level: 1, key: "roughguide_tibionis"},
    		{level: 1, key: "roughguide_tionisla"},
    		{level: 1, key: "roughguide_xexedi"},
    		{level: 1, key: "roughguide_zaonce"},
    		{level: 1, key: "roughguide_zarece"},
            {level: 1, key: "roughguide_asp2", opts: { model: "[asp]", spinModel: true }},
            {level: 1, key: "roughguide_cobra3", opts: { model: "[cobra3-player]", spinModel: true }},
            {level: 1, key: "roughguide_planetexpress"},
            {level: 1, key: "roughguide_ferdelance", opts: { model: "[ferdelance]", spinModel: true }},
            {level: 1, key: "roughguide_krait", opts: { model: "[krait]", spinModel: true }},
            {level: 1, key: "roughguide_moray", opts: { model: "[moray]", spinModel: true }},
            {level: 1, key: "roughguide_python", opts: { model: "[python]", spinModel: true }},
        ];
    
        worldScripts["Ships Library"]._registerBook("roughguide",expandMissionText("roughguide_title"),contents);
    }