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

Expansion Additional Planets SR: free bitmaps dusty

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. Unknown key 'upload_date' at https://wiki.alioth.net/img_auth.php/9/9a/Oolite.oxp.redspear.free_bitmaps_dusty.oxz!manifest.plist

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Provides 14 high resolution dusty planet/moon textures for use with the Additional Planets SR oxz. Provides 14 high resolution dusty planet/moon textures for use with the Additional Planets SR oxz.
Identifier oolite.oxp.redspear.free_bitmaps_dusty oolite.oxp.redspear.free_bitmaps_dusty
Title Additional Planets SR: free bitmaps dusty Additional Planets SR: free bitmaps dusty
Category Ambience Ambience
Author Redspear Redspear
Version 1.0 1.0
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
  • oolite.oxp.spara.additional_planets_sr_base:0
  • oolite.oxp.spara.additional_planets_sr_base:
  • Optional Expansions
    Conflict Expansions
    Information URL http://aegidian.org/bb/viewtopic.php?f=4&t=15683 n/a
    Download URL https://wiki.alioth.net/img_auth.php/9/9a/Oolite.oxp.redspear.free_bitmaps_dusty.oxz n/a
    License cc-by-nc-sa 3.0 cc-by-nc-sa 3.0
    File Size n/a
    Upload date 1610873387

    Documentation

    Also read http://wiki.alioth.net/index.php/Additional%20Planets%20SR:%20free%20bitmaps%20dusty

    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 = "Additional Planets SR pack FB";
    this.author = "spara, Redspear";
    this.copyright = "spara, Redspear";
    this.description = "Texture pack adding moons and planets for Additional Planets SR";
    this.licence = "CC-BY-SA 3.0";
    this.version = "1.2";
    
    this.startUp = function() {
    	if (!worldScripts["System Redux"]) return;
    	var moons = new Array();
    	for (var i = 1; i <= 14	; i++) moons.push("fbd_body" + i + ".png");
    	worldScripts["System Redux"].addMoonsToPool(moons);
    	var planets = new Array();
    	for (var i = 1; i <= 14	; i++) planets.push("fbd_body" + i + ".png");
    	worldScripts["System Redux"].addPlanetsToPool(planets);
    }