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

Expansion Additional Planets SR: free bitmaps icy

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/c/c9/Oolite.oxp.redspear.free_bitmaps_icy.oxz!manifest.plist

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Provides 9 high resolution icy planet/moon textures for use with the Additional Planets SR oxz. Provides 9 high resolution icy planet/moon textures for use with the Additional Planets SR oxz.
Identifier oolite.oxp.redspear.free_bitmaps_icy oolite.oxp.redspear.free_bitmaps_icy
Title Additional Planets SR: free bitmaps icy Additional Planets SR: free bitmaps icy
Category Ambience Ambience
Author Redspear, spara and collaborators Redspear, spara and collaborators
Version 1.0 1.0
Tags additional planets additional planets
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/c/c9/Oolite.oxp.redspear.free_bitmaps_icy.oxz n/a
    License cc-by-nc-sa 3.0 cc-by-nc-sa 3.0
    File Size n/a
    Upload date 1610873471

    Documentation

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

    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 <= 9	; i++) moons.push("fbi_body" + i + ".png");
    	worldScripts["System Redux"].addMoonsToPool(moons);
    	var planets = new Array();
    	for (var i = 1; i <= 9	; i++) planets.push("fbi_body" + i + ".png");
    	worldScripts["System Redux"].addPlanetsToPool(planets);
    }