Back to Index | Page generated: Nov 12, 2024, 11:02:04 PM |
from Expansion Manager's OXP list | from Expansion Manifest | |
---|---|---|
Description | Add-on name pack B to Planetary Compass OXP | Add-on name pack B to Planetary Compass OXP |
Identifier | oolite.oxp.Thargoid.PlanetaryCompassPackB | oolite.oxp.Thargoid.PlanetaryCompassPackB |
Title | Planetary Compass Name Pack B | Planetary Compass Name Pack B |
Category | Equipment | Equipment |
Author | Thargoid | Thargoid |
Version | 1.00 | 1.00 |
Tags | equipment, system | equipment, system |
Required Oolite Version | ||
Maximum Oolite Version | ||
Required Expansions | ||
Optional Expansions | ||
Conflict Expansions | ||
Information URL | http://wiki.alioth.net/index.php/Planetary_Compass_OXP | n/a |
Download URL | https://wiki.alioth.net/img_auth.php/e/e5/Planetary_Compass_Name_Pack_B.oxz | n/a |
License | Creative Commons Attribution - Non-Commercial - Share Alike 3.0 license with clauses - see readme file | Creative Commons Attribution - Non-Commercial - Share Alike 3.0 license with clauses - see readme file |
File Size | n/a | |
Upload date | 1610873499 |
Also read http://wiki.alioth.net/index.php/Planetary%20Compass%20Name%20Pack%20B
Planetary Compass Name Pack B OXP by Thargoid. This is an add-on OXP for the Planetary Compass OXP, and adds a selection of names for the moons. The main OXP must be installed for it to do anything, and at least one of the packs needs to be added. Multiple packs can be added if you wish. Doing so will expand the moon name pool and decrease repetition. Thus it requires Oolite version 1.77 or above to work. -------------------------------------------------------------- License: This OXP is released under the Creative Commons Attribution - Non-Commercial - Share Alike 3.0 license with the following clauses: * Whilst you are free (and encouraged) to re-use any of the scripting, models or texturing in this OXP, the usage must be distinct from that within this OXP. Unique identifiers such as (but not limited to) unique shipdata.plist entity keys, mission variables, script names (this.name), equipment identity strings (EQ_), description list arrays and entity roles must not be re-used without prior agreement. * rebundling of this OXP within another distribution is permitted as long as it is unchanged. The following derivates however are permitted and except from the above: * the conversion of files between XML and openStep. * the merging of files with other files of the same type from other OXPs. * Even though it is not compulsory, if you are re-using any sizable or recognisable piece of this OXP, please let me know :) -------------------------------------------------------------- Instructions: If you don't already have it, download the main Planetary Compass OXP, unzip it, and then move the folder "Planetary Compass 1.00.oxp" to the AddOns directory of your Oolite installation. Then do the same with this OXP, moving the .oxp folder into your AddOns directory. -------------------------------------------------------------- Version history: 08/01/2013 - First release, version 1.00 -------------------------------------------------------------- Acknowledgements: Thanks to Cim for his work on the visual effects new code in Oolite 1.77, and for being so patient with my suggestions and requests for features etc. And to everyone who joined the discussion on the forum about planetary naming.
Path | |
---|---|
Config/script.js | this.name = "planetaryCompass_namePack-B"; this.author = "Thargoid"; this.copyright = "Creative Commons: attribution, non-commercial, sharealike with clauses - see readme.txt"; this.description = "Moon name pack B for planetary compass OXP"; this.version = "1.00"; "use strict"; this.$planetaryCompass_addMoonNames = function() { if(!worldScripts["planetaryCompass_worldScript.js"] || !worldScripts["planetaryCompass_worldScript.js"].moonNames) { return;} worldScripts["planetaryCompass_worldScript.js"].moonNames.push([ "Naiad", "Thalassa", "Despina", "Galatea", "Larissa", "Proteus", "Triton", "Nereid", "Halimede", "Sao", "Laomedeia", "Psamathe", "Neso", "Despina", "Galatea", "Sycorax", "Thrym", "Pan", "Calypso"]); worldScripts["planetaryCompass_worldScript.js"].moonNames.push([ "Io", "Europa", "Ganymede", "Callisto", "Amalthea", "Himalia", "Elara", "Pasiphae", "Sinope", "Lysithea", "Carme", "Ananke", "Leda", "Metis", "Adrastea", "Thebe", "Callirrhoe", "Themisto", "Kalyke", "Iocaste", "Erinome", "Harpalyke", "Isonoe", "Praxidike", "Megaclite", "Taygete", "Chaldene", "Autonoe", "Thyone", "Hermippe", "Eurydome", "Pasithee", "Euanthe", "Kale", "Orthosie", "Euporie"]); worldScripts["planetaryCompass_worldScript.js"].moonNames.push([ "Hyperion", "Ariel", "Umbriel", "Titania", "Oberon", "Barnard", "Hawkings", "Newton", "Coyote", "Himalia", "Carme", "Atlas", "Pandora", "Helene", "Bianca", "Portia", "Caliban", "Prospero", "Ymir", "Nix", "Hydra"]); worldScripts["planetaryCompass_worldScript.js"].moonNames.push([ "Hephaestus", "Beowulf", "Karna", "Kavacha", "Svalinn", "Cronus", "Vajra", "Perun", "Harpe", "Peleus", "Arian", "Zalleon", "Galdia", "Valsia", "Galventor", "Velgia", "Fragarach", "Galatine", "Clarent" ]); worldScripts["planetaryCompass_worldScript.js"].moonNames.push([ "Freyr", "Ridill", "Tyrfing", "Surtr", "Girmeyn", "Golter", "Ghost", "Keldon", "Nachtel", "Zefla", "Molgarin", "Almace", "Courtain", "Durendal", "Emir", "Dane", "Tizona", "Colada", "Lobera", "Ogma", "Valkyrie", "Ascalon" ]); worldScripts["planetaryCompass_worldScript.js"].moonNames.push([ "Trishula", "Indra", "Gandiva", "Arjuna", "Sharanga", "Thyrsus", "Talaria", "Leviathan", "Nemea", "Hippolyta", "Harmonia", "Andvari", "Draupnir", "Solomon", "Gyges", "Agimat", "Manu", "Ellida", "Aegir", "Baldir", "Karun", "Thoth", "Cornucopia", "Amalthea" ]); } |