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

Expansion Additional Planets SR: free bitmaps rocky

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/8/8d/Oolite.oxp.redspear.free_bitmaps_rocky.oxz!manifest.plist

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Provides 12 high resolution rocky planet/moon textures for use with the Additional Planets SR oxz. Provides 12 high resolution rocky planet/moon textures for use with the Additional Planets SR oxz.
Identifier oolite.oxp.redspear.free_bitmaps_rocky oolite.oxp.redspear.free_bitmaps_rocky
Title Additional Planets SR: free bitmaps rocky Additional Planets SR: free bitmaps rocky
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/8/8d/Oolite.oxp.redspear.free_bitmaps_rocky.oxz n/a
    License cc-by-nc-sa 3.0 cc-by-nc-sa 3.0
    File Size n/a
    Upload date 1610873361

    Documentation

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

    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 rocky";
    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.0";
    
    this.startUp = function() {
    	if (!worldScripts["System Redux"]) return;
    	var moons = new Array();
    	for (var i = 1; i <= 12	; i++) moons.push("fbr_body" + i + ".png");
    	worldScripts["System Redux"].addMoonsToPool(moons);
    	var planets = new Array();
    	for (var i = 1; i <= 12	; i++) planets.push("fbr_body" + i + ".png");
    	worldScripts["System Redux"].addPlanetsToPool(planets);
    }