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

Expansion Ship's Library Book - Status Quo

Content

Warnings

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

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Adds Drew Wagar's Oolite novella, \"Status Quo\", to the Ship's Library. Adds Drew Wagar's Oolite novella, \"Status Quo\", to the Ship's Library.
Identifier oolite.oxp.Ramen.Status_Quo-Ship's_Library oolite.oxp.Ramen.Status_Quo-Ship's_Library
Title Ship's Library Book - Status Quo Ship's Library Book - Status Quo
Category Equipment Equipment
Author Ramen Ramen
Version 1.0.0 1.0.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 n/a
    Download URL https://wiki.alioth.net/img_auth.php/0/0b/Status_Quo-Ship%27s_Library_1.0.0.oxz link
    License CC-BY-NC-SA 3.0 CC-BY-NC-SA 3.0
    File Size n/a
    Upload date 1610873223

    Documentation

    Also read http://wiki.alioth.net/index.php/Ship's%20Library%20Book%20-%20Status%20Quo

    README.txt

    Needs cim's Ship's Library oxp to work.
    
    Written by Ramen, based off of "extracts from the tre clan" by cim, book by
    Drew Wagar.
    
    
    

    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
    Scripts/status-quo.js
    this.author      = "Ramen, based off of cim's work, book credit goes to Drew Wagar."; 
    this.copyright   = "� 2011-2014 cim, 2015 Ramen and Drew Wagar "; 
    this.licence = "CC-BY-NC-SA 3.0";
    this.version     = "0.2.1"; 
    this.name = "Library book: status-quo";
    this.description = "Status Quo";
    
    "use strict";
    
    this.startUp = function() {
    		if (!worldScripts["Ships Library"]) {
    				log(this.name,"Ships Library OXP is not installed and this OXP requires it.");
    				return;
    		}
    		if (worldScripts["Ships Library"].startUp) {
    				// force initialisation
    				worldScripts["Ships Library"].startUp();
    		}
    		// first param: unique key for this book
    		// second param: title
    		// third param: contents list
    		worldScripts["Ships Library"]._registerBook("statusquo",expandMissionText("statusquo-title"),this._statusQuo());
    } 
    
    this._statusQuo = function() {
        return [
    	{level: 0, key: "statusquo-frontpage"},
    	{level: 0, key: "statusquo-license"},
    	{level: 0, key: "statusquo-contents-table"},	
    	{level: 0, key: "statusquo-thanks"},	
    	{level: 0, key: "statusquo-canyouread"},
    	{level: 0, key: "statusquo-prologue"},
    	{level: 0, key: "statusquo-ch1"},
    	{level: 0, key: "statusquo-ch2"},
    	{level: 0, key: "statusquo-ch3"},
    	{level: 0, key: "statusquo-ch4"},
    	{level: 0, key: "statusquo-ch5"},
    	{level: 0, key: "statusquo-ch6"},
    	{level: 0, key: "statusquo-ch7"},
    	{level: 0, key: "statusquo-ch8"},
    	{level: 0, key: "statusquo-ch9"},
    	{level: 0, key: "statusquo-epilogue"},
    	{level: 0, key: "statusquo-authornotes"},
    	{level: 0, key: "statusquo-authorabout"} 
        ];
    }